I've been trying to find a way to hide certain items from just the mobile menu. I've seen two methods suggested her on the forum, neither of which work, by the way. Those were:
CODE: SELECT ALL
@media screen and (max-width: 1024px) {
#menu677 {display:none;}
}
This did not work for me, I think because the mobile menu does not show the menu item numbers (677 in this example)
CODE: SELECT ALL
option[value="URL"] {
display: none;
}
This one did not work either. I'm not sure why.
The generated html from the menu is very simple, and there is no id or class I can use to style items. Here's an example of a mobile menu item:
<option value="/index.php/outdoor-living">OUTDOOR LIVING</option>
I've tried editing the menu to see if any classes get passed into the mobile menu with no luck. The "Link CSS Style" does not get passed on to the mobile menu, nor does "Additional Class" field from the Menu Params(Gavick Pro).
The only other thing I can think of is to remove this mobile menu altogether and replace it with a different vertical menu which I can style. Are there any other suggestions that will be less cumbersome?
Thanks in advance for any suggestions.