View Single Post
Old 10-13-2020, 08:29 AM   #5
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,935
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by grizedale View Post
I have always hated the wide margins on a kindle but I recently gave the Oasis a go and used calibre to convert books to AZW3 using

html {
margin-right: -60px;
margin-left: -60px;
}
in the Look & Feel, Styling, Extra CSS.

This together with hinted ChareInk font as mentioned in the post above works perfectly for me. I also use the FONT_RAMP to alter the line sizes https://www.mobileread.com/forums/sh...0&postcount=50

Saying that I would like to reduce the bottom margin but you cant have everything.
Are you sure it's a bottom margin and not windows and orphans causing the extra space? Try this...

Code:
body {
  widows: 1;
  orphans: 1;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  text-align: justify;
}
JSWolf is offline   Reply With Quote