In the .css file, add or change the numbers for the margin-top and margin-bottom codes to 1em each (or however much space you want between the paragraphs). An example is below. I used "paragraph" for the paragraph text, so find the class that's being used in your ePub file for the paragraphs and look for that class in the .css file and add the two lines below.
.paragraph {
margin-top: 1em;
margin-bottom: 1em;
}
|