Viewing 5 replies - 1 through 5 (of 5 total)
  • stvwlf

    (@stvwlf)

    Hi

    in your theme’s style.css file, find this on line 320

    li.postWrapper, div.postWrapper {
    background-color:white;
    border:1px solid #EBEBE2;
    margin-bottom:10px;
    }

    add a clear: left; line, like this, to resolve the problem:

    li.postWrapper, div.postWrapper {
    background-color:white;
    border:1px solid #EBEBE2;
    clear:left;
    margin-bottom:10px;
    }

    Its possible the clear:left could break something else – if it does, it means further CSS tweaks are needed.

    Thread Starter mwmalta

    (@mwmalta)

    Thank you for your help but this did not resolve the problem ??

    t31os

    (@t31os)

    Here try this instead…

    .postWrapper .postMeta {clear:left!important}

    Thread Starter mwmalta

    (@mwmalta)

    i retract that statement. Thanks for your help!

    t31os

    (@t31os)

    Welcome… ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Image (float left) breaking PostWrap!’ is closed to new replies.