Quote:
Originally Posted by LDB
Confused. My Kindle, under the font A,a header, offers a layout tab with 3 options for margins and 3 options for line spacing. It has done that for as long as I remember. I keep each at the minimum to get the most text per page. Switching to the max setting of both literally cuts the word count per page in half, give or take a word.
|
The minimum left/right margins on a Kindle tend to be much wider than the minimum margins on most other devices. I tend to add some CSS when creating azw3/KF8 ebooks from epubs to shrink those margins. On a Paperwhite 4, this increases the available screen width by ~9%.
Code:
@media amzn-kf8 {
html {
margin-left: -50px;
margin-right: -50px;
}
}