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/
movin
November 10, 2016, 12:36pm
2
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?
movin
November 11, 2016, 11:50am
4
Could you please share me the page URL from your site where it is displaying so that i can troubleshoot it?
movin
November 14, 2016, 12:29pm
6
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;
}
movin
November 16, 2016, 7:17am
8
You are most welcome here