How to remove category and image above blog post?

Hi. I would like to remove the category and image above a blog post. Customizing > blog settings > blog index settings > show category on posts > off does not turn the category off and I haven’t found any CSS to add that will remove both the category AND the image. Any help would be appreciated.

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the category and the image by going to Appearance > Customize > Additional CSS and pasting it there.

/*Remove Category and image*/
header.entry-header.nolist {
    display: none;
}

Best Regards,
Support

1 Like