Can I hide the page titles?

  • Unknown's avatar

    I want to use a featured image as my page title (it’s an image with text) so I want to hide the page title. But I can’t just delete the text because I still want it to appear in the tabs above. I know nothing about code, so I will need the idiots guide on how to do this if there is a way (as in, I had to Google “CSS” – yea, it’s that bad). I have just the free version for this particular blog, so I’m hoping it’s possible. Thank you!

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

  • Unknown's avatar

    oops, I was posting from my personal blog, the one I actually need help with is cdhwarriorspnw.com

  • Unknown's avatar

    Hi there, the following will delete titles on all pages on your site (not posts). Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.

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

    If you wish to delete titles on only some pages, then it will take different code that targets only those pages. If that is what you wish to do, let us know.

    Also, you might want to take a look at our CSS Basics support page for a little primer on things.

    You may also want to get acquainted with the web inspector in your browser, which will make it much easier to identify the CSS you want to change. See our How to Find Your Theme’s CSS support page.

  • The topic ‘Can I hide the page titles?’ is closed to new replies.