downloaded v4.130 - problem still appears to be there.
Quote:
Yes, I noticed the same thing with one of my HTML to epub conversions. The multiple-spaced text was in the <body> portion of the html. I solved the spacing problem by placing the text within paragraph tags <p></p> and the result was single spacing in the epub.
|
Yekim54 - followed your advice and worked fine. Found this in the ePub Best Practices documentation:
Quote:
Use <br /> element only when it’s appropriate (poems, addresses, etc.)
The <br /> element is for introducing line breaks where those breaks are part of the content. The breaks within verses of a poem are part of the content and so that use is helpful. Other use of the <br />element should be avoided. Paragraphs will already have breaks between them because of the paragraph elements and you’ll be able to control the space around them with CSS styling.
|
I shall be putting this into practice from now on...