Quote:
Originally Posted by FulciLives
Thank you for this Caliber plugin.
I had an epub with an embedded font that I hated. I used this plugin to remove it.
So simple yet so life-changing. I can read the book now!
P.S.
To be clear, the Caliber reader would not let me change the type of font until I did this.
|
The next time another thing you could try is using CSS unset; the Calibre reader honors this in my tests. In Calibre's Preferences I've added the following to the Conversion, Common Options, Look & Feel, Styling, Extra CSS, and then I have Append extra CSS checked for the plugin.
Code:
p {
margin-top: 0em;
margin-bottom: 0em;
text-align: left;
text-indent: 1.5em;
}
body {
font-family: unset;
line-height: 1.2;
}
The font-family:unset is the only one that matters in your case; the other stuff is my preferences.