Archived topic
Added Custom CSS for Margins on Pictures Doesn't Affect All
3 replies · Started by Mihail on January 20, 2023
Hello,
I added this custom CSS to add margins to all my photos in single blog posts, as seen in this support topic.
body.single figure.wp-block-image img{
margin-top:50px;
margin-bottom:50px;
}
However, it doesn't change the margins on all my photos. I made sure they are Gutenberg image blocks, but still doesn't have any effect on them.
Can you please help me with this? I added the blog post credentials below.
Thank you!
Hi there,
try changing the CSS to:
body.single .wp-block-image img{
margin-top:50px;
margin-bottom:50px;
}
Thank you David, this worked! :)
Glad to hear that!