• Im running wordpress on one of my domains, I have changed my theme, and now every post that I do, seem to have problems, In the wordpress editor, it looks one way, and if I post it, it is almost like the text and images all wrap,

    I then put
    next to the stuff that is wrapping, but this is not having any effect on the actual content.
    Please is there anybody that can help me with this. please look at this post https://justhow2.com/?p=3

    If there is any other info needed please ask me, and I am willing to comply.

    Thank you so much.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Is it just posts with images that give you the weirdness? I am not quite sure if this is what you are after or not, but in your style sheet on line 484, it you change:

    img {
    float:left;
    padding:0 5px 5px;
    }

    to…

    img {
    float:none;
    padding:0 5px 5px;
    }

    Does that do what you need?

    Thread Starter fireball123

    (@fireball123)

    Clayton, thank you very much for the fast reply, That did solve my image problem, your the greatest.

    Another quick question, witch i think might be because of the css file as well.

    I find that if I make paragraphs, by lest say pressing enter in the post editor 2 times, and create a space between 2 chunks it also don’t show that in the front end, every thing is just one huge ongoing text,

    like this, there is a space now between the two paragraphs, there is none, This can be seen at this post https://justhow2.com/?p=228

    again, thank you so much.

    Find this in the style sheet:

    #content p{
    padding-top: 5px;
    padding-left: 10px;}

    and try this…

    #content p{
    padding-top: 5px;
    padding-left: 10px;
    margin-bottom: 6px;}

    It looks like you may have already put in some padding, but you can adjust the margin until you get something you are happy with if you need to. I think that’s what you were after. A little more space between paragraphs..

    Good luck!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post layout not Like it is in editor’ is closed to new replies.