Good day,
I would like to modify the responsivness of the main menu so that if the width goes below 925px, the menu adjusts itself automatically.
Right now, when I lower the width of the page, the main menu goes below and onto the layerslider. I would like to avoid that ?
I tried modifying the grid.css width and the layout.css and it didn’t take.
I also tried adding some code in the custom.css section and it also didn’t take.
Thank you
Hey futemarketing!
Try this CSS out.
@media only screen and (max-width: 925px) {
nav.main_menu { display: none !important; }
#advanced_menu_toggle { display: block !important; }
}
Regards,
Elliott
Good day Elliott,
Works perfectly thank you very much.