Hide Category Title

Hello I would like to hide the category title on our site

I tried this

But it hid the breadcrumbs and not the title

Tried adding this it didn’t work

.category .h-landmark {
display: none;
}

Hi Adwin,

Thank you for reaching out to us. The page you shared seems like a single post page and not the category page so your CSS won’t work, you should try adding the following code in the Theme Options > CSS:

.single .h-landmark {
    font-weight: 400;
    display: none;
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

that worked perfectly and thank you for the guides! have a great weekend

Glad we could help.

Cheers!

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