Remove text under blog post

Hi team, I’ve just created Category pages for my blog posts. I initially had just one page for all blog posts and I added Custom CSS to remove all text under those featured images of posts. The CSS is still visible when I try to add this to my newly created Category pages, however the text isn’t going away from under the posts. Do I have to add additional CSS? Thanks, R

Hi @fitnizfury,

Thanks for writing in.

Add this code in your custom CSS:

.category .x-masonry-active .entry-wrap{
    display:none;
}

Let us know how it goes.

Thanks.

That didnt work :confused: I’ve added the CSS I currently have in Global and Additional in a Secure note.

Hi There,

Thanks for the confirmation!

Please add this CSS instead of the top One.

  body.category .entry-wrap {
 display: none !important;
}

Keep your other CSS as it is.

Hope this helps!
Thanks

Worked!!! Thank you!!!

1 Like