View Single Post
Old 10-26-2010, 08:47 AM   #11
jackie_w
Grand Sorcerer
jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.
 
Posts: 6,252
Karma: 16544692
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
I don't think updating the CSS in your epubs en-masse is as simple as this.

For instance if you put
Code:
h1 {text-align:center;}
in ExtraCSS but the HTML in your epub is something like
Code:
<h1 class="mystyle">Chapter One</h1>
and existing CSS in the epub something like
Code:
.mystyle {text-align:left}
then your ExtraCSS won't override what's already in the epub.

You would need to be more specific in ExtraCSS e.g.
Code:
h1.mystyle {text-align:center}
jackie_w is offline   Reply With Quote