Archived topic
Box Shadow on Featured Image.
3 replies · Started by Rishabh on July 17, 2020
Hi, I want to have box shadow on my Featured images, on this page: https://www.clichemillennials.com/blog/
I am using this css:
.post-image-above-header .inside-article .post-image {
margin-bottom: 0.5em;
box-shadow: 0 0 10px 2px #ccc;
}
But it's giving me a white border below the image, as you can see.
How to give it a box shadow without having that white border/padding at the bottom of image?
Hi there,
The CSS should apply to the image itself:
.post-image-above-header .inside-article .post-image img {
margin-bottom: 0.5em;
box-shadow: 0 0 10px 2px #ccc;
}
Thanks.
No problem :)