Hi guys, I’m trying to add on a white border around 3 images on my homepage. I added in a custom CSS class on the images themselves (homepage-images) and have used this code in the quick CSS but nothing’s changing…
#homepage-images.avia-image-container img {
border: 15px white;
padding: 5px;
}
I’d also like to know how to add a shadow to the border, if that’s ok/possible?
Could you please let me know what I’m doing wrong or perhaps I have something in my quick CSS that’s overriding it?
Login deets below if you need
Thank you :)
Sarah
Hi Sarah!
Try adding this to your custom CSS.
#custom-section .avia_image {
border: 15px solid white;
padding: 5px;
box-shadow: 0 0 4px black;
}
Cheers!
Elliott
Perfect, thanks so much as always ! :)