Thread: Kindle Scribe
View Single Post
Old 12-01-2022, 05:34 PM   #270
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,600
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by LDB View Post
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;
  }
}
DNSB is offline   Reply With Quote