Hi
1. Our template has a build in megamenu and not a regular module position. You can replace it by editing file /layout/default.php and replacing:
- Code: Select all
<?php if($this->API->get('menu_type', 'aside') == 'classic') : ?>
<?php if($this->API->get('show_menu', 1)) : ?>
<div id="gkMobileMenu" class="gkPage"> <i id="mobile-menu-toggler" class="icon-reorder"></i>
<select id="mobileMenu" onChange="window.location.href=this.value;" class="chzn-done">
<?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 if($this->API->get('show_menu', 1)) : ?>
<div id="gkMainMenu" class="gkPage">
<?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; ?>
<?php else : ?>
<i id="aside-menu-toggler" class="icon-reorder"></i>
<?php endif; ?>
with
- Code: Select all
<jdoc:include type="modules" name="mainmenu" style="raw" />
than You will be able to use "mainmenu" module position to show menu in this place.
We cannot provide images used in demo, because it's prohibited by law, so we had to replace them with dummy images. You will have to upload Your own images instead.