Hi,
... new to drupal.
Objective: create two custom horizontal navigation bars (eventually with drop down menu), one above and one below the "header" SECTION.
I have been pulling my hair out for 2 days over this exercise.
This is what I have sone so far: created my own subtheme directory, changed .info file name, changed .info file settings and added:
regions[nav_top_region] = Top Navigation Region (custom)
regions[nav_main_region] = Main Navigation Region (custom)
Thereafter added to page.tpl.php :
<?php if ($nav_top_region): ?>
<div id="nav_top-wrapper" class="clearfix">
<div class="nav_top-inner"><?php print $nav_top_region; ? ></div>
</div>
<?php endif; ?>
and
<?php if ($nav_main_region): ?>
<div id="nav_main-wrapper" class="clearfix">
<div class="nav_main-inner"><?php print $nav_main_region; ?></div>
</div>
<?php endif; ?>
Am I good so far? What are my next steps? Do I create a block now within the region, do I need to activate/create those two regions somewhere else, what do I have to link with?
Each entry in the navigation bar should be a link to a different page.