BO-Beladomo
Fix Sub Menu Display
Copy the header.php file to your Child Theme.
Find:
1 |
<nav id="topmenu" role="menu"> |
Replace with:
1 |
<nav id="topmenu-mmm" role="menu"> |
Fix Mobile Menu
Go to Mega Menu > Menu Themes and paste the following into the Custom Styling area:
1 2 3 4 5 6 7 8 9 10 11 12 |
/** Hide the theme mobile toggle button **/ .mega-menu-main-menu .toggleMenu { display: none !important; } /** Make the mobile menu 100% wide **/ @include mobile { .mega-menu-main-menu .header-right { float: none; width: 100%; clear: both; } } |