Tagged: mobile menu
Hi there. Is there any way to display a different menu to mobile users? I have navigation links that I have to hide when user are on a tablet or smartphone so I want to duplicate the main menu and add those nav items to the duplicate which would get displayed to mobile users instead.
Does that make sense?
Hey Kevin!
You can add the class of noMobile
to any menu item you don’t want in the mobile menu.
If you don’t see the CSS class field check if you have it enabled in Screen Options.
Regards,
Josue
Hey, Josue. I want to do the opposite. I want some things to ONLY show up in the mobile menu. Any suggestions?
Thanks!
kcm
Put a noDesktop
class instead and add this to Quick CSS:
@media only screen and (min-width: 767px) { .noDesktop{ display: none !important; } }
Regards,
Josue
Thanks. I realized that was the solution right after I posted my response. :-)
Thanks!