Quote:
Originally Posted by Billi
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).