how to remove a page title on homepage

  • Unknown's avatar

    I see page titles on every page that I am posting even on the front homepage. how to remove it?

    Thanks.

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

  • Unknown's avatar

    hi hawsksbillsummer

    I see page titles on every page that I am posting even on the front homepage. how to remove it?

    – to remove the title on home page you need to add following code in you custom css

    article#post-4 .entry-header .entry-title {
        display: none;
    }

    this code is only to remove title from the home page post, if you need to remove title for every page then you need to add the below code

    .entry-title {
        display: none;
    }

    hope this helps let me know if you need any help in this

  • The topic ‘how to remove a page title on homepage’ is closed to new replies.