Remove Page Title

  • Unknown's avatar

    I’m trying to remove the “Home” page title on my blog which is setup at the static, front-page of my blog. I tried all of the following CSS:

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

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

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

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

    Any ideas on why none of the above code attempts will work for me? Any help is very much appreciated!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    you should remove all the code above and try this one:

    h1.page-title {
    display: none
    }

    I can not 100% say if this suggestion works as I’m unable to test if self in my current environment, but give it a try and let me know if it worked.

  • Unknown's avatar

    Hi, working off of what @mrlubomir gave above, if you wish to remove the page title from only the home page, use this:

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

    Other static page titles and post titles use the .entry-title class. The home page, as you have things set up uses .page-title.

  • Unknown's avatar

    wow! thank you so much. is there anyway to remove the footer info where it says sketch theme?

  • Unknown's avatar

    Removing the footer info is not allowed under any circumstances. You can only modify the style of the footer text (i.e. colors and font size), and you can also add your own copyright notice to the existing footer.

  • Unknown's avatar

    Hi @pursona, as @mrlubomir says, you are allowed to restyle the footer credits to better fit with your design as long as they remain readable. If you need help restyling or adding to the existing footer credits, let us know and our volunteers and Staff would be happy to help.

  • The topic ‘Remove Page Title’ is closed to new replies.