I have the set the mobile menu as my main navigation on the site. The issue I am running into is the menu is always visible on load. Once I click on the menu icon it opens up and when I close it, it disappears as normal. What is causing that.
Hi bensondesign!
You have some custom CSS which is displaying it on all screen sizes.
@media only screen and (max-width: 2000px)
#mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide {
display: block;
}
Cheers!
Elliott