Quote:
Originally Posted by happyjon
Just uploaded my first book to Smashwords, no autovetter errors were reported, I checked it in the validator SW recommend, and that said "Congratulations!No errors," so everything looked fine until I opened the book in ADE. and found each line in the toc had its own page.
|
Did you by any chance format paragraphs in Word by pressing Enter at the end of each line? If so, you'll have to
search and replace these hard line-breaks with spaces.
If you didn't use hard line breaks at the end of each line, open the ePub with
Sigil, switch to Code View, have a look at a typical paragraph and post it here. It should look like this:
Code:
<p class="abc">It was a dark and stormy night ...</p>
Then look at the stylesheet and search for the defintion for
abc and post it as well. It should look like this:
Code:
abc {
text-indent: 1em;
...
...
...
}