Quote:
Originally Posted by Waylander
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.