Hi
I have a main menu with many items. My client does not want his logo to shrink or be affected by the menu. So i want to trigger the mobile menu earlier than is standard. iPad landscape is just ok. But iPad portrait needs to have the mobile menu.
I am using the slide out mobile menu on this site.
I am using a child theme with a style.css so i can add extra mediaqueries at the bottom of that file.
Is this ok to do? How can this be done?
Ok, so it seems that i fixed it after searching the forum. Sorry.
THE FIX:
– Ad css to childtheme/style.css:
@media only screen and (max-width: 959px) {
.responsive #header .main_menu ul { display: none;}
.mobile_active #advanced_menu_toggle { display: block;}
}
– Change in enfold/avia.js:
switchWidth = 959;
Thanks guys