Site logo

Archived topic

.blog-post-content-wrapper img - Override?

3 replies · Started by Paul on January 13, 2023

Viewing posts 1–4 of 4

Hi There,

I'm using the CSS below to add a border radius to all images with posts - but since added I now need to give zero border to images that will exist within a GenerateBlocks local pattern (see link in private info) any ideas on how I can do that?

/*Blog post content image styling */
.blog-post-content-wrapper img {
	 border-radius: 1.5rem;   
	 margin-top: 0.5em;
}

Cheers

Hi Paul,

Try this CSS:

.blog-post-content-wrapper img:not(.gb-block-image img) {
    border-radius: 1.5rem;
    margin-top: 0.5em;
}

Perfect thank you Ying! :)

No Problem, glad to help :)

This archived topic is closed to new replies.