View Single Post
Old 11-18-2015, 06:06 AM   #292
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: 79,796
Karma: 146391129
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 Nick_1964 View Post
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;
}

Last edited by JSWolf; 11-18-2015 at 06:08 AM.
JSWolf is offline   Reply With Quote