When adding submenu items, the left column menubar always displays the submenu items at the top. Would make more sense if the sumenu items were next to the mainmenu item.
What CSS style would I need to edit to display the submenu items next to the mainmenu item and not at the top?
See attatched image and the site at: http://181.224.148.90/~ksmorsdk/index.php
2 answers
To get it fixed, please open the file /skin/frontend/default/jm_megamall/joomlart/jmmegamenu/css/jmmegamenu.css, on line 801:
Replace this rule:
.vertical-mega-menu .jm-megamenu ul.level0 li.mega {
border-bottom: 1px solid #505050
float: none;
position: static;
text-align: left;
}
With:
.vertical-mega-menu .jm-megamenu ul.level0 li.mega {
border-bottom: 1px solid #505050
float: none;
position: relative;
text-align: left;
}
Hope this helps.
Thank you very much. Worked perfect
This question is now closed