Archived topic
Spacing before and after images (not featured, only within the content)
1 reply · Started by marc on November 16, 2022
Hey guys,
I've been using generatepress quite often but on this installation (example of a page in the private section) the spacing before and after my images isn't right (not the featured one, only the ones in the actual content). Headings and paragraphs around content images look very squished. I can't seem to find where to solve that within the customizer without adding any CSS? Can you help?
Thanks
Hi Marc,
WP used to add margin bottom to the WP image block, but it seems they removed it since 6.1.
If you want, you can add it back using this CSS:
.entry-content .wp-block-image {
margin-bottom: 2em;
}