View Single Post
Old 12-11-2013, 09:05 AM   #7
gbm
Wizard
gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.
 
Posts: 2,195
Karma: 8888888
Join Date: Jun 2010
Device: Kobo Clara HD,Hisence Sero 7 Pro RIP, Nook STR, jetbook lite
Quote:
Originally Posted by Aiden View Post
It's the narrowest one, the problem is the spacing between paragraphs, the line spacing is normal.



I tried it already on two different books, it doesn't fix it, because when I preview the e-book on calibre, the spacing is normal :/



This is actually interesting, it fixes the problem, but I find it kinda uncomfortable, because if I change anything like the typeface or the margins it adds the extra spacing again.



How do I edit the css? I tried Sigil, but can't find the section mentioned in the post #19?

Thank you all for your answers!
The easiest way--if the ebook is a calibre conversion to start-- is to reconvert with the Expand CSS option checked. Next is to do a epub to epub with Expand CSS checked.
Click image for larger version

Name:	Screenshot from 2013-12-11 08:52:15.png
Views:	1185
Size:	77.4 KB
ID:	116529
You can also edit the margin in the css file, but this will mean the you will have to edit every margin in the css file.
example:
Code:
{

    margin: 0
}
This condensed margins this gives a margin of 0 top, bottom , left and right.

You would want to change that to:
Code:
    {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0
}
for the nook to display correctly.

See this for condensed margins help.

bernie
gbm is offline   Reply With Quote