View Single Post
Old 02-28-2023, 06:42 AM   #14
DrChiper
Bookish
DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.DrChiper ought to be getting tired of karma fortunes by now.
 
DrChiper's Avatar
 
Posts: 1,034
Karma: 2006208
Join Date: Jun 2011
Device: PC, t1, t2, t3, Clara BW, Clara HD, Libra 2, Libra Color, Nxtpaper 11
Quote:
Originally Posted by Sirtel View Post
There is an option in Kobo eReader.conf (.kobo/kobo) on a Kobo that will ignore widows/orphans with epubs. This can be overridden in the CSS. But if you remove all widows and orphans from CSS or set them to 1, this should work.
Code:
[Reading]
readingAdobeOrphans=1
readingAdobeWidows=1
Thats a great find

I had recently the same issue, but solved it in the CSS itself, so it also works on other devices:
Code:
body {
  font-family: serif;
  margin: 0 1%;
  orphans: 1;
  widows: 1;
}
p, div {
  font-size: 1em;
  text-align: justify;
  orphans: 1;
  widows: 1;
}
DrChiper is offline   Reply With Quote