Hello,
When I minimize the browser screen the menu overlaps with the logo. Is there a way to automatically display the menu icon when the logo hits the menu items?
Hey icebox10!
Add this to your custom CSS.
@media only screen and (max-width: 959px) {
nav.main_menu { display: none !important; }
#mobile_advanced { display: block !important; }
}
You may need to play around with the 959 value.
Cheers!
Elliott