How would I add 3px semi-transparent black border around all images in body?
Such as in the image at the top if this page below?
Hey koala!
Add this in Dashboard -> Enfold -> General Styling -> Quick CSS,
main img {
border: 3px solid black !important;
padding: 0px !important;
}
Cheers!
Elliott
Hi!
You can target those with this,
.grid-image img {
border: 1px solid rgba(0,0,0,.3) !important;
}
Regards,
Elliott