View Single Post
Old 07-14-2019, 05:33 PM   #1247
lumpynose
Wizard
lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.
 
Posts: 1,086
Karma: 6719822
Join Date: Jul 2012
Device: Palm Pilot M105
Quote:
Originally Posted by FulciLives View Post
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.

Last edited by lumpynose; 07-14-2019 at 09:51 PM.
lumpynose is offline   Reply With Quote