View Single Post
Old 08-16-2019, 06:11 PM   #2
lumpynose
Wizard
lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.lumpynose ought to be getting tired of karma fortunes by now.
 
Posts: 1,086
Karma: 6719822
Join Date: Jul 2012
Device: Palm Pilot M105
I think I figured it out; lots of hacking and slashing until I found the place where it was going bad. My CSS had been


PHP Code:
section.bodymatter header.bridgehead p {
    
font-styleitalic;
    
margin-top0.2em;
    
text-indent0em;

Even though I wasn't using a bridgehead header the italics was going everywhere. I moved the italics part to a separate "not amzn-mobi" media query:

PHP Code:
section.bodymatter header.bridgehead p {
    
margin-top0.2em;
    
text-indent0em;
}

@
media not amzn-mobi {
    
section.bodymatter header.bridgehead p {
        
font-styleitalic;
    }

lumpynose is offline   Reply With Quote