I am using the business theme and was wanting the main menu on the top to be placed under a rotating banner i have in the header section. could someone point me in the right direction to get this done? i was mistaken it is not the navigation menu.

CommentFileSizeAuthor
#1 Capture.PNG959.39 KBI need help.
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

I need help.’s picture

FileSize
959.39 KB
I need help.’s picture

Status: Active » Needs work
I need help.’s picture

Category: task » support
I need help.’s picture

Assigned: I need help. » Unassigned
I need help.’s picture

Issue summary: View changes

Not the navigation menu, the MAIN menu.

vidit.anjaria’s picture

Issue summary: View changes

@I need help.

To place the navigation under rotating banner, you have to edit the page--front.tpl & style.css files. In page--front.tpl file, from header tag, cut this below code and place after banner code.

 <nav id="navigation" class="clearfix" role="navigation">
      <div id="main-menu">
        <?php 
          if (module_exists('i18n_menu')) {
            $main_menu_tree = i18n_menu_translated_tree(variable_get('menu_main_links_source', 'main-menu'));
          } else {
            $main_menu_tree = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
          }
          print drupal_render($main_menu_tree);
        ?>
    </div>
  </nav><!-- end main-menu -->

and in style.css file

#navigation {
  position: relative;
}
vidit.anjaria’s picture

Status: Needs work » Needs review