Remove category from featured image

Hello, I’m quite new to Wordpress, and I am have tried time and again to use the option to not show the category in the featured image at the top of a post, but it just won’t go away. Since Wordpress requires you have one category, by default there is always a large gap in the bottom of my photo. Any help would be greatly appreciated!

cheers
Nick

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 -> Additional CSS

/*remove category from feature image*/
span.shapely-category {
    display: none !important;
}

Best Regards,
Support

`fantastic! Thank you so much!