As theducks said, "Your CSS code is bad (for what you want)"
Since you are in code view anyway, have a look at the paragraph coding and the stylesheet.
Look at the <p class="something"> of the paragraphs that don't space the way you want them to. Open the CSS file and find the ".something" entry--does it have any top or bottom margin?
Since you seem to want some whitespace between paragraphs, try adding a line like "margin-bottom: 1em;" to the CSS entry, and see what happens.
BTW, If you have the Live CSS pane open (it's in the View menu), you can click on text in the code pane and it will show you any and all codes that go into the final display. Then you can click on one of the entries and go right to editing the CSS file in that exact spot. Bit of a bear to get used to, but super helpful once you do.
|