View Single Post
Old 07-26-2011, 04:10 AM   #16
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
Hah - calibre strikes again.

It is a font issue. The problem lies in the book's css:
Code:
.calibre {
    display: block;
    font-family: "DejaVu", sans;
    font-size: 1em;
    margin-bottom: 0;
    margin-left: 5pt;
    margin-right: 5pt;
    margin-top: 0;
    page-break-before: always;
    text-align: justify
    }
Remove the line saying
font-family: "DejaVu", sans;
since this is forcing your reader to use its default sans-serif font rather than the new font, which was defined as the default serif. If you want a font that's a bit more readable you could try Gentium, though it doesn't have a bold weight.
charleski is offline   Reply With Quote