Navigation menu, remove item from desktop
Using theme (and child theme) of Sailent, I'm trying to work out a way to completely remove a menu item from my navigation bar while on desktop. See site here: http://www.boinginflatables.com/2017update/
As you can see, the text for the menu item isn't there, yet it messes up the alignment of the menu.
At the moment, I have that menu item set to a css class of mobile-only with css settings as:
.mobile-only {
visibility:hidden;
}
@media (min-width:992px) {
.desktop-only {
visibility:visible !important;
}
}
@media (max-width: 991px) {
.mobile-only {
visibility:visible !important;
}
.desktop-only {
visibility:hidden !important;
}
}
Topic responsive navigation mobile menus Wordpress
Category Web