How do I remove page name \ title heading text?

Viewing 6 posts - 1 through 6 (of 6 total)
  • #12860
    lukes
    Participant

    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?

    #12861
    Alexander
    Participant

    Hi lukes,

    try to add this to your css:

    .page .entry {
    display: none;
    }

    Cheers,
    Alexander @ http://www.mouseclick.com

    #12864
    lukes
    Participant

    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

    #12867
    Alexander
    Participant

    Sorry, my mistake, try:

    .page .entry-title {
    display: none;
    }

    Cheers,
    Alexander @ http://www.mouseclick.com

    #12870
    lukes
    Participant

    Awesome, This works! Now is there a way to do this on only on a few pages like the home page?

    #12876
    Alexander
    Participant

    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

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.