Archived topic
Hide menu on front page (but not sticky)
7 replies · Started by Klara on February 3, 2023
Hi!
I'm building a page where I want to hide the logo+main menu on the front page, but still have it in the sticky menu. The logo seems to be two different "things" but the menu seems to be the "same" thing. I've tried to hide the menu via "hide elements" or css but whenever I hide the navigation in primary menu, the navigation in sticky menu disappears as well.
Hi there,
can you set up your site so you can see the navigation and the sticky nav, then share me a link to the site, and ill see what is needed.
Hi!
The site is http://saradaniusstiftelse.se/ it' has a coming soon page but if you use login: guest pw: guest you should be able to see it.
Thank you!
Do you want to remove the site header ( logo etc ) too?
Yes, but only for the front page, on the other pages of the site I want there to be a logo+nav at the top.
Try this CSS for the navigation:
.home .main-navigation:not(#sticky-navigation) {
position: absolute;
opacity: 0;
pointer-events: none;
}
And you can use a layout element to remove the site header for homepage.
Thank you so much for your help!
No Problem :)