Archived topic
Image and text: more space between
5 replies · Started by Rene Nekuda on November 4, 2022
Hello,
please, can you help me with this?
On the bototom of every image on my blog is no space: https://renenekuda.d.pr/i/Mn2QCK
I was trying this CSS code (not working):
.wp-block-image img {
margin-bottom: 30px;
}
I am using standard Gutenberg blocks.
Any idea? Thank you very much!
Hi there,
try:
figure img {
margin-bottom: 30px;
}
Thank you, David. It is working for images without captions. For these with caption it is pushing this text down: https://renenekuda.d.pr/i/Tdhn57
Change it to:
figure {
margin-bottom: 30px;
}
YEEES! :)
Thank you very much, David.
You're welcome