Top navigation as submenu in magento
If you would like to show your magento store categories like as in picture then you are on right place. Replace this code in topmenu.phtml <?php $_menu = $this->getHtml(‘level-top’) ?> <?php if($_menu): ?> <div class=”nav-container”> <ul id=”nav”> <?php echo $_menu ?> </ul> </div> <?php endif; ?> with below <?php $_menu = $this->getHtml(0,’level-top’) ?> <?php if($_menu): […]