HI guys
When reducing the browser width on this site, the top menu starts to overlap the logo before switching to mobile menu. I’ve tried adding the 2 code suggestions from another thread to the Child theme but no luck (individually and together);
———————————————————————————–
@media only screen and (max-width: 1100px) {
.av-main-nav > li > a { padding: 0 7px; }
}
———————————————————————————–
@media only screen and (max-width: 1024px) {
#mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
nav.main_menu { display: none; }}
#wrap_all {
position: relative !important;
}
———————————————————————————–
Hey pantoni,
Try this instead:
@media only screen and (max-width: 1140px) {
nav.main_menu {display:none !important;}
#advanced_menu_toggle, #advanced_menu_hide {display:block !important;}
}
Thanks,
Rikard
Thanks Rikard – that worked perfect.
cheers