Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator cubecolour

    (@numeeja)

    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

    Thread Starter rjarmitage

    (@rjarmitage)

    Cheers Numeeja for your reply.

    But unfortunately no such luck. Still no paragraph breaks.

    Moderator cubecolour

    (@numeeja)

    Are you sure?

    I can still see

    p {
            display: inline;
            margin: 0 0 0 0;
    	padding: 0px;
            width:840px;
    }

    in your stylesheet

    Thread Starter rjarmitage

    (@rjarmitage)

    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.

    Moderator cubecolour

    (@numeeja)

    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.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Paragraph breaks not working’ is closed to new replies.