Disable Featured Images while viewing single post

Is it possible to disable the Featured Images when you view the single post? This is a nice feature but my existing site does not have the right image sizes so they look weird at the top of the post.

Hi @koala,

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 -> Dazzling Options -> Other -> Custom CSS

body.single-post img.thumbnail.wp-post-image {
    display: none;
}

Best Regards,
Movin