Quote:
Originally Posted by giododa
In your ebook created with Calibre usually the text is defined by something like this
<p class="calibre2">your text</p>
In the stylesheet.css you will find the corresponding class, let's say .calibre2
You must add the two lines
widows: 0;
orphans: 0;
to this class.
|
Actually, that's not quite correct. The place to put widows and orphans is in the body. I do it all the time and it never fails to work.
body {
widows 0;
orphans 0
}