View Single Post
Old 04-11-2013, 02:13 PM   #6
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 80,067
Karma: 147983159
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by giododa View Post
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
}
JSWolf is offline   Reply With Quote