• Resolved Jeffro

    (@jeffr0)


    Why is it that I can not for the life of me get a post that I published onto my site to appear with the correct spaces inbetween paragraphs. I have tried double spacing the content in the editor and I have also tried manually adding <br><br> to the post to create the necessary spaces and the editor seems to have a mind of it’s own and is doing things it’s own way.

    How can I stop my content from looking like a big block of text?

    You can see what I mean by visiting https://www.jeffro2pt0.com

Viewing 5 replies - 1 through 5 (of 5 total)
  • WP will disreagrd multiple br tags.

    You have a stylesheet where you can define the top and/or bottom margin for paragraphs.

    Thread Starter Jeffro

    (@jeffr0)

    I can’t seem to figure out what to add to my CSS stylesheet in order to accomplish the appropriate vertical spacing between paragraphs. I see the correct spacing available on other themes but not the one I am using. Mind helping me out?

    It is set to zero [0]:

    div.item_class .item_text p{
    	padding:0px;
    	margin: 0px;
    }

    change it to something like
    margin: 10px 0;
    10px = top and bottom; 0 = left and right;
    you can have it not ‘shorthand’ > like
    2px 3px 4px 5px – the order is: top – right – bottom -left

    Thread Starter Jeffro

    (@jeffr0)

    Thanks moshu, that did the trick. This post can be labeled as Resolved now ??

    Even adding the “margin: 10px 0;” tag when it doesn’t exist works as well. thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Post Editor Issues’ is closed to new replies.