Tagged: mobile menu
In Enfold theme options, I have set the header menu activation to “activate for smartphone snd tablets (browser width below 990)”.
This means my menu overlaps on iPad landscape mode where width is 1024.
How can I set the breakpoint so that the mobile menu will appear at 1024 and below?
Thanks,
Nancy
Hi nancyT,
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen and (max-width: 1024px) {
nav.main_menu {display:none !important;}
#advanced_menu_toggle, #advanced_menu_hide {display:block !important;}
}
Thanks,
Rikard
Thanks, worked perfectly.