Hello,
I have a case where I need to display the menu icon (for mobile) below 1150px. How do I do that?
I change the header option to “Active for Smartphones and Tables (browser width below 990px)”, but 990px is not enough, I need it to be 1150px.
Thanks
João Brots
Hey JoaoBrots,
Try adding the following to quick css:
@media only screen and (max-width: 1150px) {
.menu-item {
display: none;
}
.main_menu {
display: block !important;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Jordan Shannon