View Single Post
Old 08-12-2014, 09:09 PM   #3
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,784
Karma: 169712580
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by davidfor View Post
The only time I notice this is with kepubs, sideloaded or purchased, and when I have the hidden full screen reading option turned on. I don't justify the text, but I think it makes this problem worse.

As to styles, the ones that get into all my books are:

Code:
body {
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  text-indent: 1.2em;
}
I sometimes change the value for the text-indent and sceneBreak margin-top depending on how I feel and if the original version seemed to have a particular style.
Hmmm... my body style is a bit different but then I use different classes for different areas especially the full page images so almost always use <body class='tag">. Some of the items are due more to having adding them once and never removing them than to any real functionality.

Code:
.epub  {
    display : block;
    font-size : 1em;
    margin : 0 0 0 0;
    padding : 0 0 0 0;
    text-align : left;
    widows : 1;
    orphans : 1;
    -epub-hyphens : auto;
    -webkit-hyphens : auto;
    adobe-hyphenate : auto;
    }
Regards,
David
DNSB is offline   Reply With Quote