View Single Post
Old 08-25-2020, 06:07 AM   #36
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,197
Karma: 148951761
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 Waylander View Post
If I increase the boldness on DaltonMaag in the middle of a chapter, the bottom margin doesn't change. However, when I move to a new chapter, the bottom margin is consistently higher after this. In other words, as you suggest, it looks like a bug
Try the following...

Load the ePub into the Calibre editor. In the CSS, remove any instances of windows nd orphans. In the body class (if such does not exist add one) and you want to add in widows and orphans with a value of 1.
[quote]body {
widows: 1;
orphans: 1;
}[/code]

This is what I use for body....
Code:
body {
  widows: 1;
  orphans: 1;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  text-align: justify;
}
This may solve the problem you are having.
JSWolf is offline   Reply With Quote