[SOLVED] Edit menu position
January 2013 Joomla Template
Rate this topic: 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
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
-
- Fresh Boarder
- GK User
- Tue Feb 23, 2016 9:57 am
- Reply with quote
- Report this post
Hello,
You can try to move fragment:
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.
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.
-
- Moderator
3 posts
• Page 1 of 1