CSS help with removing menu titles from pages.
-
How can I remove the menu titles from the top of my pages? And remove “home” from my static front page?
The blog I need help with is: (visible only to logged in users)
-
Hi there!
Please try this CSS:
#site-navigation {visibility:hidden} .site-header {border-bottom-color:transparent!important} .home h1.entry-title {display:none!important} .home #site-navigation {visibility:visible} .home .site-header {border-bottom-color:#eee} -
Thanks for your response. That actually hides my menu. Sorry if my question was confusing. On every page, there is a title that is similar to the menu title at the top of the page. That is what i’m wanting to hide. I was able to hide the title on my static home with the bottom css code. Can I do that on every other page, as well?
-
Oh please replace the code with only this:
.entry-header h1.entry-title {display:none!important} -
- The topic ‘CSS help with removing menu titles from pages.’ is closed to new replies.