Quote:
Originally Posted by Gray Eminence
Is there a way to get a full page in black?
|
You can specify all margins to zero (for "body" and "@page"), and hope the reader obeys them. Some readers may add their own margins regardless of what the book says. Try using named classes and "!important", those might override those reader's defaults.
CSS:
Code:
@page { margin: 0 !important }
body.main { margin: 0 !important }
XHTML:
Code:
<body class="main">
...
</body>
Quote:
Or is there a way to force that NIGHT MODE in the ePub?
|
No, that's a reader thing.