Site logo

Archived topic

Remove image border from certain images

3 replies · Started by Jan on February 26, 2021

Viewing posts 1–4 of 4

Hi Generatepress support team,

I added the following CSS code to my website, to add a border to images.

}
.wp-block-image img {
border: 1px solid #CCC;
}

What is the CSS code that I need to remove the border from certain images, using Additional CSS class?

Thanks a lot,

Jan

Hi Jan,

If you want to remove border for specific images, select the image in page editor, give it a custom css class, for example: no-border.
https://www.screencast.com/t/iurAAT2F5

Then add this CSS:

.no-border img {
    border: none;
}

Let me know :)

Yes perfect, thanks a lot!

You are welcome :)

This archived topic is closed to new replies.