Tagged: disable, menu, responsive
Hi,
I want to disable the responsive menu because im going to use an menu plugin that is responsive also .
Is there any option somewhere or quick css code do disable the responsive menu?
Cheers!
Hey Mattias!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.mobile_active.mobile_menu_tablet #advanced_menu_toggle, .responsive .main_menu {
display: none;
}
Best regards,
Yigit
Sorry it dident work for me.
Link : http://clustret.sokonline.se/
I used firebug and tried this one but dont know if it is right css code?
.mobile_active #advanced_menu_toggle {
display: none !important;
Hi!
Yes, please flush browser cache after applying the code and refresh your page a few times
Cheers!
Yigit
Hi!
I have added your code to as instructed and flushed my browser cache and refresh the page a few times.
Still doesn’t work for me :-(
//strom
Hi!
Please go to wp-content\themes\enfold\js folder and open Avia.js file and find
avia_responsive_menu();
and comment it out as following
//avia_responsive_menu();
Regards,
Yigit
I’m having difficulty with this as well.
I tried the first css and it just hid all my menu items.
Next I tried commenting out the avia_responsive_menu(); in the avia.js, and this worked, but it also disabled my small fixed header from sizing. It just stays big instead of scaling down when a user scrolls down.
Is there a better way to get rid of the responsive menu, so I can avoid the header issue?
thanks
Hey!
Please use this to remove the mobile menu:
@media only screen and (max-width: 968px) {
.responsive #top .mobileMenu {
display: none !important;
}
}
Remove browser cache then reload the page a few times.
Best regards,
Ismael
Great! Seems to be working just fine. Thanks