How can I remove page titles from category pages?

  • Unknown's avatar

    For example, in my menu, when you click on “Lifestyle,” the heading at the top of the page reads “Lifestyle Category.” I would like to remove that title on ALL of my pages.

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

  • Unknown's avatar

    Hi Brittany,

    You can use Custom CSS to make that change. You can find tips in our guides to CSS Basics and How to Find Your Theme’s CSS to help make changes like this to your theme’s design.

    I used the approach in that second guide to find that the heading on those category pages uses the class headline-archive. Using that, you can remove the heading with CSS like this:

    .headline-archive {
      display: none;
    }

    The “display: none” rule makes it so the element you’ve selected (in this case, any element with the class “headline-archive”) isn’t displayed on the page.

    Please let me know if you have questions about that! You can also get more help and tips for customizing your theme’s design from the volunteers in the CSS Customization forum. :)

  • The topic ‘How can I remove page titles from category pages?’ is closed to new replies.