How to set a global radius on "Element - image"

I’ve created a global style for my webiste and want to set a global radius for my images.
When i go to the “Element - Image” in the global style i find the “icon border” option where i can set a border radius, which unfortuenately doesn’t apply to my image widget.
Mind you that i managed to change the global style in the "Element - Image " “caption” to no caption and it applied to my image. SO it seems to me the correct place to apply my radius

I’ve just bought Bricks yesterday so i’m very new to the whole thing and any tip is appreciated.

Thanks!

Hi Sam,
Welcome to the forum!

Unfortunately, there is no Theme Style setting to apply a border radius to images.
However, you can achieve this with a single line of CSS in Bricks Settings » Custom CSS:

img {
border-radius: 24px;
}

Remember, however, that this now applies to every img tag regardless of where it’s placed/used.

Best regards,
timmse