Tagged: image border, sidebar
I’ve been looking around here, but haven’t found out how to remove that thin gray border around the thumbnail images in the latest news widget in the sidebar. It appears to be a background image. Can I remove it with quick CSS?
Hi codemode!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.news-thumb { border: none; }
Best regards,
Yigit
awesome thanks!!
Follow up question: I noticed if I used the widget in the footer with a black background, there appears to be a white box behind or around the thumbnail. Can that be removed as well?
Hi!
You can add this:
.news-thumb {
padding: 0;
}
.news-thumb img, .news-thumb img {
width: 36px;
height: 36px;
}
Regards,
Ismael
perfect thanks!