Hi,
We’re using the Enfold Main Menu within a sidebar. (Left Sidebar) We´d like to have the Mobile Menu to be shown in IPad portrait mode and the standard sidebar menu in IPad landscape mode. But there aren`t any header-options to set with the “Left Sidebar” activated like in the “standard” Top Header mode. (Header Mobile Menu activation) Can you provide us any custom css for this issue please?
Regards, Tom
Hey webwex,
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
nav.main_menu {
display:none !important;
}
#advanced_menu_toggle, #advanced_menu_hide {
display:block !important;
}
}
Regards,
Rikard
helped me exactly – thanks!