I would like to use the Material theme skin, but i do not want the "Off Canvas Menu Mobile Nav Menu items" to inherit any navigation items assigned in your "Top Navigation" menu location when viewing on a mobile device. (it is enabled by default).
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
@media only screen and (min-width: 1px) and (max-width: 999px) {
#slide-out-widget-area .mobile-only {
display: none !important;
}
}
I would like to use the Material theme skin, but i do not want the "Off Canvas Menu Mobile Nav Menu items" to inherit any navigation items assigned in your "Top Navigation" menu location when viewing on a mobile device. (it is enabled by default).
is there a way around this?
Hey Again,
Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):
Thanks
ThemeNectar Support Team
Perfect. Thank you for your always-quick responses!