[SOLVED] Edit menu position

January 2013 Joomla Template
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
Mon Feb 22, 2016 7:34 pm
Reply with quote
Report this post
Hi,
how can I do to move one menu (main menu or top menu) from left column (inset) position to PageTop or banner-top position?
Thanks
User avatar
Fresh Boarder

GK User
Tue Feb 23, 2016 9:57 am
Reply with quote
Report this post
Hello,

You can try to move fragment:

Code: Select all
<?php if($this->API->get('show_menu', 1)) : ?>
          <div id="gkMainMenu" class="gkMainMenu<?php echo $this->API->get('menu_visible_depth', 1); ?>">
             <?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; ?>


in the layouts/default.php file to other place in this file, but I afraid that it will need a lot of custom CSS code which you will have to create by yourself as this kind of modification is beyond of our technical support.
User avatar
Moderator

GK User
Tue Feb 23, 2016 10:09 am
Reply with quote
Report this post
Ok, thanks
User avatar
Fresh Boarder


cron
Remember me
Register New Account
If you are old Gavick user, click HERE for steps to retrieve your account.