View Single Post
Old 05-15-2011, 10:18 PM   #4
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 74,033
Karma: 129333114
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Do you have a sample of the code?

If that really is the CSS code, also put in text-indent: 0

Code:
p.MsoNormal, li.MsoNormal, div.MsoNormal {
   top-margin: 0;
   bottom-margin: 0;
   left-margin: 0;
   right-margin: 0;
   text-indent: 0
}
That looks a lot cleaner. But if the code in the XML is <p class="MsoNormal"> replace it with <p> and fix the CSS so that entry is

Code:
p {
   top-margin: 0;
   bottom-margin: 0;
   left-margin: 0;
   right-margin: 0;
   text-indent: 0
}

Last edited by JSWolf; 05-15-2011 at 10:26 PM.
JSWolf is offline   Reply With Quote