Photo Border

I am unable to find how I can darken or thicken the border that is around the frame of photos that I insert in pages. Any Custom CSS for this?

Hi There,

Please add this custom CSS under Theme Options > CSS:

.image-border {
-webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.75);
}

After that add the image-border class to your images.

You can adjust the box shadow on this link: https://www.cssmatic.com/box-shadow.

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.