Hide the name of the page.

  • Anonymous

    #9728

    How can i hide the name of the page in the leftt top corner?

    When i click on the home page there appears the name HOME in the left top corner how can i change that or hide it?

    Thx in advance.

    Anonymous

    #44433

    If you want to hide it from every page and post add this to custom css or child-theme style.css:

    .post-title  {
    display:none;
    }

    To hide it from home page only use this:

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

    rcecilio

    #44434
    .post-title  {
    display:none;
    }

    works for pages and posts, how to hide just the pages titles?

    rcecilio

    #44435
    .type-page .post-title {
    display: none;
    }

    worked!!! thx anyway

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

  • You must be logged in to reply to this topic.