Remove overlay from featured image
- The topic ‘Remove overlay from featured image’ is closed to new replies.
Need help? Check out our Support site, then
Hi there, I’m looking to remove the slight black overlay from the featured images in Caldwell.
The css previously recommended in this forum:
.featured-image::after {
display: none;
}
Is not working to remove the overlay from featured images. Does anyone know what code will work?
Thanks!
The blog I need help with is: (visible only to logged in users)
That CSS should still work. You might try adding more specificity to the selector like this:
body .featured-image:after { display: none; }
Let me know how that works for you.