How to remove the Category Archive title from my Category page?

I would like to remove the “Category Archive” title form my category page

Hi There,

We can use CSS to hide the title. See this: https://screencast-o-matic.com/watch/cbltiE2R7D

.archive header.x-header-landmark { /* This will work on both tag and category page*/
    display: none;
}
.tag header.x-header-landmark { /* This will work on specific to tag  page*/
    display: none;
}
.category header.x-header-landmark {  /* This will work on specific to category page*/
    display: none;
}

Choose which CSS suits your needs.

Hope this helps.

1 Like

Thanks :slight_smile: . It worked perfectly

Glad we were able to help :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.