Hi, I’ve found some topic discussing about that but none fit my case.
I would like to change breakpoint to toggle mobile menu at 990px with.
Could you please tell me how can I get that result?
Thanks in advance…
Stefano
Hey Stefano!
Add this to your custom CSS.
@media screen and (max-width: 990px) {
nav.main_menu { display: none !important; }
#advanced_menu_toggle { display: block !important; }
}
Best regards,
Elliott
That’s it!
Thank you so much!