View Single Post
Old 05-06-2018, 02:57 AM   #92
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,561
Karma: 20150435
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
The file OEBPS/Styles/style.css within the book indeed contains:

Code:
body.especial { font-family:"Times New Roman", Times, serif; margin:1em 0 1em 1em; }
which is bad coding. You could remove the font-family part (with the calibre book editor, for example), or you could try overriding it by adding "!important" to the body font-family:

Code:
body {
font-size: 8pt;
font-family: Bookerly, serif !important;
...
}
Jellby is offline   Reply With Quote