I've enabled font size rescaling and set the value to 0.0 pt - just opened a book in KOReader now (EPUB) and noticed its font is bigger nonetheless. Tested on several other books but those look fine. Does the 0.0 pt value not do anything or is it a matter of the specific EPUB file?
Actually just opened an EPUB with the "correct" size and its body CSS is like this:
Code:
.calibre5 {
display: block;
text-align: justify;
text-indent: 1em;
margin: 0
}
while the one with too big font is
Code:
.calibre6 {
-moz-hyphens: auto;
-webkit-hyphens: auto;
adobe-hyphenate: none;
display: block;
font-size: 1em;
hyphens: auto;
orphans: 2;
text-align: justify;
text-indent: 1.5em;
widows: 2;
margin: 0
}
Wonder why the 2nd book has font-size to it?