Hi,
When re-sizing the browser window to make the windows smaller, the menu seems to run out of room, and then will some of the items will move to the next line. How do I either make the menu not responsive, or apply another fix for this?
Thankyou
Hi uvanlj1!
Add this to your custom CSS.
@media only screen and (max-width: 959px) {
nav.main_menu { display: none !important; }
#advanced_menu_toggle { display: block !important; }
}
Regards,
Elliott
That worked to make it change to the mobile menu…thanks for that…
Going to look into @media css now:)
thanks again