Category Title

Hello

When I click on a category and am taken to the page with all relevant posts, there is an ugly heading/ title on the top left of the page.

I used the custom CSS

.h1, h1 {
display: none;
}

but not only does this remove the category title but also the title of each post when the full post is shown.

Can you provide code to remove the title from the category page but keep the post titles when the full post is showing?

Thank you.

Hi @lucydm,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

.archive.category #main > header.page-header {
    display: none;
}

Best Regards,
Movin