Removing the Featured Image From Showing On The Blog Post

Good day, I love this theme but I am having an issue.
On all of my blog posts the featured image is showing up on the top in a rectangular form and I really want to remove it. How can I get my featured image not to show up on the blog post itself. I don’t find it showing up on the static page or blog page but not the blog post itself cause now all of my blog posts have duplicate featured images on the top of the post. Thanks in advanced. I left a link to show what I am talking about.

Link: http://thewalkingmermaid.com/blog/beachaven-vineyards-winery

Hello there,

I hope you are doing well today.

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


/*Remove featured image*/
img.single-featured.wp-post-image {
    display: none;
}

Best Regards,
Support

Thank you but sadly that removes the featured image from my entire website. I attached the pictures below. One is the main page with the featured photo which is good. The one with the X on the featured picture is on the blog post. I don’t want it to show in the blog post.

Hey there,

Use this instead.

/*remove feature image from single post*/
.single img.single-featured.wp-post-image {
    display: none;
}

Best regards,
Support.