Quote:
Originally Posted by gbm

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!