Hi,
Can you tell me if there is anything I can do about the mobile menu overlapping the main logo on my website. Is there an option somewhere for a mobile logo?
Thank you,
Kate
Hi rynleigh!
Try adding this to your custom CSS.
@media only screen and (max-width: 767px) {
#advanced_menu_toggle { display: block !important; }
.main_menu { display: none !important; }
}
You may need to play around with the 767px value so it switches on the right spot.
Cheers!
Elliott