Makery
Hide the default “select” mobile menu and display the Max Mega Menu mobile menu instead
Go to Appearance > Customize > Additional CSS and insert the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
@media handheld, only screen and (max-width:767px) { .mega-menu-main-menu .header-menu { display: block; float: none; } .mega-menu-main-menu .select-menu { display: none; } .mega-menu-main-menu .header-search { clear: both; margin-top: 20px; } } |