paragraps are not very readable, the text clutters together. if you check vollmer.nl, you’ll see what i mean: my paragraphs are readable, yet have three times a smuch space between them than WP allows you to have.
i got the advice to alter the CSS:
Controlling the spacing between paragraphs when the browser renders them is one of the things that CSS is designed to do easily. It lets you do quite a bit more than that, but it is one of the things you can do with it.
The best way to do this consistently is to learn a bit about CSS and get the custom CSS upgrade, since you can then just set a class on the paragraphs and have the CSS set up to take care of it. Short of that, you can specify this on a paragraph-by-paragraph basis in the HTML view in the editor. Here’s an example to play with:
<p style=”text-align:left;”>Here’s a paragraph with default margin, border, and padding.</p>
<p style=”text-align:left;padding-top:5em;”>So, what happens here?</p>
<p style=”text-align:left;”>Here’s another paragraph with default margin, border, and padding.</p>
<p style=”text-align:left;padding-bottom:16em;”>And what happens here?.</p>
<p style=”text-align:left;”>And here’s yet another paragraph with default margin, border, and padding.</p>
Try putting that into a draft post and previewing it; you should see some (excessively large) spaces between a couple of the paragraphs.
lotta hassle for a simple question, yet it’s good to have an option.
kudos to singularcontinuity