Remove featured image header from blog posts

Hi,

I’m having a hard time removing the featured image from the top of my blog posts. I’d like for the image to show up everywhere except on the top of the actual blog post.

I’ve attempted the solutions listed in these places with no luck:
https://colorlibsupport.com/t/remove-featured-image-blog-post/
https://colorlibsupport.com/t/removing-featured-image-from-post-view/
https://colorlibsupport.com/t/removing-featured-image-on-page/

Hi Harrison Alley,

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 the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

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

Best Regards,
Movin

Thanks, Movin.

I’m not sure why but that didn’t work (see attached). Can I give you WordPress access so you can take a look?

Could you please share me the page URL from your site where it is displaying so that i can troubleshoot it?

Sure. It’s: http://www.thepassiveincomeblog.com/pay-off-student-loans-early/

Please do not use on the forum multiple user accounts as a single user.

The code is not working on your site due to CSS specificity issue so to make it work try using the below custom CSS code instead.


body.single-post img.single-featured.wp-post-image {
    display: none !important;
}

It worked!

Thanks a bunch.

You are most welcome here :slight_smile: