Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hi,
I have Vantage Premium theme on my WordPress. I don’t bought premium features.
Can I hide menu bar in mobile view only? I want to leave menu in full-width view of the page only.
Can you help me out?
Thanks a lot :-)
Anyone knows how to do it?
+1 for such question. Anyone help?
Hi,
You can do this by adding custom CSS. The following CSS will hide the menu when the users window is smaller than 1000px.
@media (max-width: 1080px) { .main-navigation ul { display: none; } }If you’re doing this for a responsive menu; that’s fine. I will however suggest that you use Responsive Menu as that has typically gotten the best results (visually) with Vantage.
Thank you a lot!
@Alex
Can you help me with Origami theme with the same problem? Can I hide menu on mobile version of site?
Thanks :-)
Hi Adam,
Please use:
#menu { display: none; }