View Single Post
Old 08-07-2013, 11:55 AM   #13
jamezgatsby
Junior Member
jamezgatsby began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Aug 2013
Device: Nook HD+
Talking

Quote:
Originally Posted by gbm View Post

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

BERNIE YOU ROCK! Got it done finally!

Thanks so much for your details!
jamezgatsby is offline   Reply With Quote