Quote:
Originally Posted by Nick_1964
Noticed something strange.. for sure there will be a setting wrong but when transferring a book (not convert) and there is the extra_css in the root of the book, it changes the lay out of the book at every <p> no matter what is in the extra css.. the stupid thing is that in both preview of Sigil and Calibre the "gaps" can't be seen... when you open the book in the reader or preview it in ADE it can be seen.
It does even with only this in the extra css:
@page { margin: 0.00em 0.00em 0.00em 0.00em!important; }
|
Sounds like an error in extra.css. Any error in the CSS and RMDSK will ignore it completely. Also, you don't need @page at all. You can do away with it. Just use margins of 0 in body.
Code:
body {
widows: 1;
orphans: 1;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
text-align: justify;
}