View Single Post
Old 08-07-2013, 09:59 AM   #12
gbm
Wizard
gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.
 
Posts: 2,082
Karma: 8796704
Join Date: Jun 2010
Device: Kobo Clara HD,Hisence Sero 7 Pro RIP, Nook STR, jetbook lite
Quote:
Originally Posted by theducks View Post
Jamez
I think what is trying to be conveyed is the font code is IN the HTML, and not the CSS (or weirder, both) and the INLINE style overrides the CSS

That is what I meant.
In the stylesheet.css you will be looking for: font-size: **; see bold in sample css
Code:
.calibre1 {
    display: block;
    font-size: 12pt;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: center;
    text-indent: 1.5em
    }
Change all of the font-size elements to /*font-size: **;*/ to comment out the font size. Save then check using Preview Book, if nothing change then the font size is hardcoded into the html, if that is the case then use Sigil to edit the html.
Code:
.calibre1 {
    display: block;
    /*font-size: 12pt;*/
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: center;
    text-indent: 1.5em
    }
bernie
gbm is offline   Reply With Quote