Ayrleig
Member
Posted 4 months ago #
Look at how it eliminates attempts to do line spacing.
Text below images in blogs get butted up against the bottom of the images, even if paragraph statements, etc., are added.
Why can't WordPress fix their system to allow good HTML & CSS formatting?
To add space between your paragraphs, ensure your css adds appropriate padding
for example
p {
padding-top:1em;
padding-bottom:1em;
}
You may also want to ensure you have appropriate values for padding/margin on your images. Well crafted themes should have been built with this as a consideration.