On each page the page name is places on the page as heading text below the header and navigation bar. For example on the demo site you can see this here: http://demo.onedesigns.com/pinboard/?page_id=4 it says “Features” even though it is already highlighted in the navigation bar.
How do I remove this heading text on pages?
Hi lukes,
try to add this to your css:
.page .entry {
display: none;
}
Cheers,
Alexander @ http://www.mouseclick.com
Thanks for replaying Alexander all the contents of my pages disappear when using this CSS so it must be setting all the contents of the page to display: none
Sorry, my mistake, try:
.page .entry-title {
display: none;
}
Cheers,
Alexander @ http://www.mouseclick.com
Awesome, This works! Now is there a way to do this on only on a few pages like the home page?
The easy way to do this is to save a page without a title for those you want to hide the title.
Otherwise try to add this:
.post-4.page .entry-title {
display: none;
}
whereas .post-4 is just an example, but must be the unique id of the page.
Cheers,
Alexander @ http://www.mouseclick.com