| 
			
			Converting from ePub to ePub doesn't always work for books with oddly named styles - or else I am not able to specify a wide enough scope in my extra CSS snippet.
 For instance the book I was fiddling with had about 20 styles named p.* and they didn't get amended?
 i.e.
 p.para
 {
 font-family:"Times New Roman", serif;
 font-size:medium;
 margin-top:0em;
 margin-bottom:0em;
 text-align:justify;
 text-indent:0em;
 }
 
 Could I influence them all with a statement like:
 
 p {
 line-height: 130%
 font-family:"DroidSerif", serif;
 }
 |