View Single Post
Old 08-22-2011, 06:24 AM   #11
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,558
Karma: 19620479
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by Billi View Post
But the default is "0", isn't it?
No, it's some non-zero value. But, as I said, it seems it's applied to <body>, so it's only visible at the sides. At least that's what it was in the Gen3, I assume the Opus is the same in this respect.

Quote:
Originally Posted by EowynCarter
I usually st the margin on the ePub via the ade page template.
top : 0.5em, left, right, bottom 0em.
And set the margin on the css to zero.
You don't need the page template. You can remove body margins with:

Code:
html body { margin: 0 }
(you have to use "html body" instead of just "body", to give it a higher priority, or use a class; otherwise the default margins are not overriden)

and then set your preferred margins with:

Code:
@page { margin: 3mm }
(better set it in absolute units, not font-dependent ones).
Jellby is offline   Reply With Quote