Remove "Category" on top of every post

Hi

I would like to remove the “Category” (which links to a page with all the posts under that category) from every post.

I saw that you provided a solution in this forum link: https://colorlibsupport.com/t/remove-category-above-post-in-activello/

However, the CSS code below does not work for me.
article li.cat-item {
display: none;
}

Any other solutions? Thanks!

Hi @wanderer74,

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

The shared code only works on the posts listings page, to remove it from the single post page you can use the below CSS code.

.main-content-area .cat-title {
    display: none;
}

Best Regards,
Movin