Hi!

Thank you very much for this really AWESOME drupal theme! :)
Please, help me, what changes and where I should make to move the primary navigation menu under the logo? (as shown on screenshot). And where I can change it's colour and make it expandable?

Thank you so much for your time!

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

yashadev’s picture

Apply the attached patch to make your Main Menu under the logo.

Or change the code manually. First, open the page.tpl.php file.
Move the following code under

:

<?php if ($primary_nav): ?>
   <div id="main-menu">
      <h3 class="hidden">Main Menu</h3>
       	<?php print render($primary_nav);?>
        </div>
<?php endif; ?>

Then open layout.css and remove
position: absolute;
under #main-menu {

To change its colour and make it expandable, define the styles in custom.css. Make sure you define the styles for specific items rather than global (use ids)

yashadev’s picture

Status: Active » Closed (fixed)