Display submenues next to main menu item in left colum menu

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

Profile photo of Seoki Lee 1510.00 $tone June 30, 2014
Public

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.

#1

This question is now closed

Written By

Comments