Move mainmenu position above logo

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue May 20, 2014 11:40 am
Reply with quote
Report this post
Hello,

I want to move the mainmenu position above logo, search, topmenu positions. Thank you
User avatar
Fresh Boarder

GK User
Tue May 20, 2014 2:38 pm
Reply with quote
Report this post
You need to edit file:
templates/gk_storebox/layouts/default.php
and find this block code:
Code: Select all
   <div id="gkMainWrap" class="gkPage">
       <div>
          <div id="gkHeader">
             <div id="gkHeaderNav"<?php if($this->API->modules('header') > 0) : ?> class="gkAbsoluteHeader"<?php endif; ?>>                       
                <?php if($this->API->get('show_menu', 1)) : ?>
                <div id="gkMobileMenu">
                   <?php echo JText::_('TPL_GK_LANG_MOBILE_MENU'); ?>
                   <label for="mobileMenu"><?php echo JText::_('TPL_GK_LANG_MOBILE_MENU_LABEL'); ?></label>
                   <select name="mobileMenu" onChange="window.location.href=this.value;">
                   <?php
                       $this->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
                       $this->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
                   ?>
                   </select>
                </div>
                <?php endif; ?>
             
                <?php $this->layout->loadBlock('logo'); ?>
               
                <?php if($this->API->get('show_menu', 1)) : ?>
                <div id="gkMainMenu">
                   <?php
                      $this->mainmenu->loadMenu($this->API->get('menu_name','mainmenu'));
                       $this->mainmenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
                   ?>   
                </div>
                <?php endif; ?>
             </div>

and change it to:
Code: Select all
   <div id="gkMainWrap" class="gkPage">
       <div>
          <div id="gkHeader">
             <div id="gkHeaderNav"<?php if($this->API->modules('header') > 0) : ?> class="gkAbsoluteHeader"<?php endif; ?>>                       
                <?php if($this->API->get('show_menu', 1)) : ?>
                <div id="gkMobileMenu">
                   <?php echo JText::_('TPL_GK_LANG_MOBILE_MENU'); ?>
                   <label for="mobileMenu"><?php echo JText::_('TPL_GK_LANG_MOBILE_MENU_LABEL'); ?></label>
                   <select name="mobileMenu" onChange="window.location.href=this.value;">
                   <?php
                       $this->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
                       $this->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
                   ?>
                   </select>
                </div>
                <?php endif; ?>
             
               <div id="gkMainMenu">
                   <?php
                      $this->mainmenu->loadMenu($this->API->get('menu_name','mainmenu'));
                       $this->mainmenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
                   ?>   
                </div>

                <?php $this->layout->loadBlock('logo'); ?>
               
                <?php if($this->API->get('show_menu', 1)) : ?>
               
                <?php endif; ?>
             </div>

Some additional css changes might be required.
User avatar
Moderator


cron