CSS to Round Corners of Images in Blog Post

I know there’s a way to do this, but I haven’t found it on a forum yet.
I’ve found custom solutions for specific peoples pages, but nothing that’s global for everyone.

I’ll like to add CSS to this page that puts a slight rounding on the edges of all three images in the post.
Is this possible?

Hi There,

Thanks for writing in!
There is an option in cornerstone image element to make the image rounded.
If you give the value to border-radius then it makes the image rounded.

You can create one image and save this as preset and apply to other images the same preset.
You can check this for how to use presets.

If you want to apply the changes to all post images throughout the site without editing it one by one.
Please add this CSS to your theme option -> global CSS

body.single-post .entry-content img {
border-radius: 5px !important;
}

You can adjust the value here.

Hope this helps!

That global CSS worked perfectly, thank you!

You’re welcome.

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