In you main stylesheet, style.css, you have paragraphs set to display inline with a bottom margin of zero.
edit it to replace the current
p {
display: inline;
margin: 0 0 0 0;
padding: 0px;
width:840px;
}
with
p {
margin: 0 0 1em 0;
padding: 0px;
width:840px;
}
to take out the display:inline declaration & add some bottom margin
Cheers Numeeja for your reply.
But unfortunately no such luck. Still no paragraph breaks.
Are you sure?
I can still see
p {
display: inline;
margin: 0 0 0 0;
padding: 0px;
width:840px;
}
in your stylesheet
Yes, I reinserted that because I need that so the front page aligns horizontally on IE.
It didn’t make a difference when I took it out.
That is the code which is causing it to display incorrectly, so I’m afraid there is nothing else I can suggest.
TinyMCE screws with br and p tags. There are at least two plugins to fix this. I forget what they are now because I turned TinyMCE off and just hand type the pages. A plugin search in your admin area for Tinymce will give you a list to chose from.