This topic has 6 replies, 3 voices, and was last updated 5 years, 5 months ago ago by Olga Barlow
Good morning..
I want to create a landing page for one product of my store, for which I have to create a page exclusively for that product.
But the main menu should not appear (ONLY IN THIS PAGE)
How can I do it?
Hello,
You can add this code in Custom CSS settings – http://prntscr.com/o1bnr1
.header .menu-wrapper, .navbar #st-trigger-effects {
display: none !important;
}
Regards
Hello! Thank you very much for the reply. It’s OK.
BUT NEED to hide the sticky mine-menu too, only in this page. Which is the Custom CSS code?
Hello,
Replace the previous code by the following if you want to hide the only menu for both headers
.header .menu-wrapper, .navbar #st-trigger-effects, .fixed-header .navbar-collapse {
display: none !important;
}
or the following one if you want to hide menu for the default header and completely hide the fixed header not just menu only
.header .menu-wrapper, .navbar #st-trigger-effects, .fixed-header-area {
display: none !important;
}
Regards
Thank you very much! The second one is perfect!
Hello,
You are welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up