Quote:
Originally Posted by ryder
Thank you. I will try that. I am using a clara 2e. The last reader was a sony prs-t3. It handled my ebooks much better. Don't know why Kobo is so lazy with formatting and such. Are you editing from paragraph to paragraph or just via the conversion tool?
|
This CSS for p is what I use. I edit the eBooks. I do not convert ePub to ePub. I also remove all of the <p class="indent"> (or whatever class they use for the main paragraph style and replace it with <p>. It's much neater code.
Code:
p {
margin-top: 0;
margin-bottom: 0;
widows: 1;
orphans: 1;
text-indent: 1.2em;
}