hi guys on my client site the burger menu doesn’t show on mobile
hi the code i have is
@media only screen and (max-width: 1106px) {
#mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block!important; }
#mobile-advanced a {color:#ffffff!important;}
nav.main_menu { display: none!important; }
}
It looks like maybe this is outdated ? The idea is that the burger menu kicks in at 1106 pixels or below
Okay guys I amended that css to this and it works fine now
@media only screen and (max-width: 1230px) {
.menu-item { display: none!important; }
.av-burger-menu-main { display: block!important; }
}