View Single Post
Old 02-11-2011, 04:39 PM   #13
cybmole
Wizard
cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.cybmole ought to be getting tired of karma fortunes by now.
 
Posts: 3,720
Karma: 1759970
Join Date: Sep 2010
Device: none
Quote:
Originally Posted by kovidgoyal View Post
MOBI does not support top and bottom margins.
Hmm- well Kindle mobi does in that I can go to an epub css, add top / bottom margins to any of the .calibre styles, and those changes will show up after converting to mobi & sending to Kindle - the ignore margins option in Kindle output does not negate those

e.g. these margin top settings ( from an actual epub book) both work OK in that I can see them being applied within the Kindle display.
Code:
calibre14 {
    display: block;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1em;
    text-align: justify;
    text-indent: 0
    }
.calibre15 {
    display: block;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 11pt;
    text-align: justify;
    text-indent: 0
    }
so top / bottom is supported at a paragraph / style level. do you mean it is not supported at a @page level ?
cybmole is offline   Reply With Quote