Support » Fixing WordPress » hide page titles

  • I would like to have the blue title in front of the image gone.
    I have already tried a lot of things by inspecting it with my right mouse button and then copy what I think I need and paste/change it in the additional CSS within the customizer. Nothing works so far..

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • .page-header h1.hestia-title {
        display: none !important;
    }

    Try placing this in the customizer’s additional css.

    Thread Starter hoeijke

    (@hoeijke)

    Then my homepage title is also removed.
    I would like to only remove the title on my pages.

    You could try something like this:

    
    body.page .page-header .hestia-title {
      display: none;
    }
    body.home .page-header .hestia-title {
      display: block;
    }
    

    this will tell all .page to hide the title but will keep the .home from still showing it.

    Thread Starter hoeijke

    (@hoeijke)

    awesome. that works 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘hide page titles’ is closed to new replies.