For a start follow below to push main menu block to appear underneath the logo
Find file "templatesgk_myfoliolayoutsdefault.php"
Edit Line: 45 to 54 which is as below
- Code: Select all
            <div id="gkPageTop" class="clearfix">
              <?php $this->loadBlock('logo'); ?>
              
              <div id="gkMainMenu">
                 <?php
                    $this->menu->loadMenu($this->getParam('menu_name','mainmenu')); 
                     $this->menu->genMenu($this->getParam('startlevel', 0), $this->getParam('endlevel',-1));
                 ?>
              </div>
           </div>
Change it to as below:
- Code: Select all
            <div id="gkPageTop" class="clearfix">
              <?php $this->loadBlock('logo'); ?>
           </div>
           <div id="gkPageTop" class="clearfix">
              <div id="gkMainMenu">
                 <?php
                    $this->menu->loadMenu($this->getParam('menu_name','mainmenu')); 
                     $this->menu->genMenu($this->getParam('startlevel', 0), $this->getParam('endlevel',-1));
                 ?>
              </div>
           </div>
Also if you want to main menu to start from left hand side enable CSS Override feature from template features and add below into override.css which is in "templatesgk_myfoliocssoverride.css"
- Code: Select all
 /* Moves Menu to float Left Side */
#gkMainMenu {
    float: left;
}
As for your slideshow i dont think there will be enough height for slideshow module where the logo and menu is. Just dont forget this is a portfolio template. if you still insist i can create slideshow module position which runs underneath the main menu which you can enable perhaps on certain pages.