Hello,
I’m using the Enfold Latest News Widget in my footer. The problem is for the posts that do not have a featured image, it displays a blank square. Please click on the link below and scroll to the bottom. Any suggestions ? Thanks
Hi bibbitybop!
Please add following code to Quick CSS in Enfold theme options under General Styling tab to remove thumbnails from your widget
span.news-thumb {
display: none!important;
}
Regards,
Yigit
Unfortunately that removes *all* the featured images. That’s not what I want. The posts that show the featured images are fine. The posts that *do not* have a featured image are showing the blank square. If you click on the link I posted, you can see plainly what I’m talking about.
Hey!
I already checked your website however removing thumbnails only on posts that has no featured image looked ugly. You can use following code to hide the placeholder
span.news-thumb.no-news-thumb {
opacity: 0;
}
Cheers!
Yigit
Perfect ! Thank-you.