Hiding a Menu on a Page
-
How do I hide my menu on one page? I don’t want any menu on a couple of new pages but I don’t want to change the menu on the existing pages. I believe my theme only allows one menu. How do I do this?
The blog I need help with is: (visible only to logged in users)
-
I can help you do this with CSS. Let me know which pages should be menu free and I’ll give you the code you need to make it happen.
-
It also looks like you’ve used CSS to remove the footer credits. Our Terms of Service require you to keep those, so if you could put them back, that would be great.
-
-
I must have removed the footer credits inadvertently. Not even sure how or when it happened.
-
I must have removed the footer credits inadvertently. Not even sure how or when it happened.
No problem, I’ve added them back for you.
How do I hide my menu on one page?
This should remove the menu on just the page you identified. the .page-id-421 part identifies the specific page, #navigation chooses the menu area. The rest makes it disappear.
.page-id-421 #navigation{ display:none; } -
-
-
Sorry about that. You have quite a bit of existing CSS, so I assumed you were experienced. My bad.
To use the code, just open your customizer (linked below) and paste the code in the CSS box. Be sure to add the code to the very bottom so you don’t disturb the existing code.
Let me know if you need any thing else.
- The topic ‘Hiding a Menu on a Page’ is closed to new replies.