Removing featured image from post view

I see that featured images show on top of each post. While that’s nice in the front page (with excerpts) it’s not that nice when going into a post, precisely when the featured image is the first image of the post. You would see the same image twice in the screen, which is not nice.

So, I would like to remove the featured image, but only in the post-view. Keeping it on front page. Is it possible?

Add this code to Theme Options - Other - Custom CSS. This code will hide featured image from single post view but images will be still visible in blog page.

.single .single-featured {
    display: none;
}

So good. Thanks a lot.