Getting page titles to only appear on certain pages

  • Unknown's avatar

    Hello! I’ve added the following Css to remove titles from my pages:

    .entry-title {
    display: none;
    }

    However, I’m hoping to find a way to still have titles on my blog posts/post page. I played around with :not(x) in the about css, but couldn’t get it to work. Advice?

    Thanks so much!!

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

  • Unknown's avatar

    Hi there, we can target static pages only by using the page CSS class that is listed in the opening body tag for static pages. Change what you have to the following.

    .page .entry-title {
        display: none;
    }
  • The topic ‘Getting page titles to only appear on certain pages’ is closed to new replies.