Remove mobile menu button
- The topic ‘Remove mobile menu button’ is closed to new replies.
Need help? Check out our Support site, then
I would like to completely remove the menu from my website. This hasn’t been an issue on the desktop version, but on the mobile view of my website there is a menu button the shows up even when no menu is set. Currently a menu is set there so that it’s not empty while I trouble shoot the issue. I would greatly appreciate any help you an offer.
The blog I need help with is: (visible only to logged in users)
Hi,
Please try the following css snippet.
It will remove Menu handler from mobile displays.
@media screen and (max-width: 767px) {
.toggle-menu-wrapper {
display: none;
}
}
Hope it will help you.
Thanks