Image rounded corners (border radius) - not working

Hello,

I’m trying to round the corners of my images in my newsletter to be consistent with my brand and I can’t seem to figure it out.

Support tells me it’s custom code and sent me to this page: CSS Rounded Corners

And it seems like I was already doing what it suggested but the corners weren’t rounding.

To add the code I clicked on the image and opened up the code box then added the border radius after the other 2 parameters like this below:

alt style=“display: block;” width=“200;” border-radius: 25px;>

Even if I use the same format at the code already in there as below, it still does not apply the rounding.

alt style=“display: block;” width=“200;” border-radius=“25px;”>

Any ideas as to when I’m doing wrong or is there an easier way to round the corners of images?

Many thanks, Paul

Might be your syntax. Border-radius is a style attribute not a tag attribute. Also, the comma’s int he tag attributes are invalid syntax.Maybe try…

<img src="..." style="display: block; border-radius: 25px;" width="200" />