Quote:
Originally Posted by MacEachaidh
Does anything perhaps leap out as an obvious source?
|
If all the troublesome paragraphs are in
<p class="MsoPlainText"></p> tags, then the
MsoPlainText definition is to blame. Try changing these two values in your CSS, and see if the problem goes away:
Code:
.MsoPlainText {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
text-align: justify;
text-indent: 0
}
Similar adjustments may need to be made for the other classes, if they are affecting things as well.
- M.