Site logo

Archived topic

How to add a border radius to all images?

3 replies · Started by Jericho on November 23, 2019

Viewing posts 1–4 of 4

Hi GP Team,

I need help with some CSS code to add border-radius to all images on my site at once.

i.e. homepage, archives, featured image, images on every post and page.

Currently, I'm using the CSS code below but it does not add a border-radius to the images in each post.

img.attachment-full.size-full {
border-radius: 10px;
}

Thanks!

Hi there,

Try this instead:

.site img {
    border-radius: 10px;
}

It worked! Thanks Leo! :)

No problem :)

This archived topic is closed to new replies.