• Resolved beretta

    (@beretta)


    Hey everyone. My blog is at http://www.beretta-online.com/wordpress

    I’m using an altered version of the bluemod theme. One thing I’d like to change is this: currently in my blog entries there is no space between paragraphs. Even if I go into HTML mode and insert a couple of
    breaks, a new paragraph still begins on the very next line, as you can see. My .css file is at http://www.beretta-online.com/wordpress/wp-content/themes/bluemod/style.css

    I’d like my paragraphs to be separated by a line, and I’d also like my blog to obey me when I put line breaks in. The comments section is fine – paragraphs do have a line between them there. I can’t see exactly what I need to change. Is it something in #main, and if so, what?

    Thanks for any advice.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The roblem is that in your CSS at the very beginning you have:

    p {
    margin: 0px;
    padding: 0px;
    }

    Change it to somethign like this:

    p {
    margin: 0px;
    padding: 0 0 12px 0;
    }
    Thread Starter beretta

    (@beretta)

    Fantastic, that fixed it. I still can’t use < br> (without the space) to add extra lines, but this is quite livable.

    Thanks tugbucket.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Spacing between paragraphs in main blog entries’ is closed to new replies.