After spending all day stuffing around with this I found the solution. Get this.
One problem I’ve commonly found is that the paragraph display in some themes causes pagraphs to be crammed together one after another, with no space in between. If you have a theme whose paragraph display isn’t quite right, you can fix this in just a single step. It should be easy even for those of you who do not have any programming experience. None needed, as it’s all done in CSS (Cascading StyleSheet). You don’t even have to have any CSS experience, as I’ll show you how right now.
From your WordPress blog’s control panel, make sure that you have selected the WP Theme that you want to tweak. Then click on the “Theme Editor” setting. If you are not already viewing the “Stylesheet” or “style.css” file, select it from the list at right. Skim over the CSS code that you see. If the CSS code is well written/ organized, you should see a “body” section, followed soon after by a “p” (paragraph) section. This is what you want to focus on. Your current “p” section may look something like this:
p {
margin: 0;
padding: 5;
}That may not be exact, but what it’s lacking is some vertical spacing command. Back up the file before changing it, then add a margin-top clause like so:
p {
margin: 0;
padding: 5;
margin-top: 5px;
}The order of the clauses don’t matter in this case. The margin-top clause simply says that at the top of each paragraph of text displayed in the body of a post, insert 5 pixels of vertical space first. That gives you just enough space between paragraphs to make them more readable. This may just make the difference between a visually-okay theme and a nice theme that’s easy to read. Play around with the spacing until you’re happy with it. If you accidentally changed some other clause, replace the stylesheet with the backup version.