Viewing 3 replies - 1 through 3 (of 3 total)
  • Check your markup
    http://validator.w3.org/

    Don’t get overwhelmed by the error or warning messages, just look for the important ones like unclosed tags.

    Thread Starter yuedesign

    (@yuedesign)

    I’ve done that and it’s pretty much valid excluding the occasional <br> instead of <br />

    Thanks for your help though

    You can either remove float:right from span.newer and deal with the position with something else.

    or

    Move margin-top:-18px from the div.links and put it in the span like this

    span.newer {
        float: right;
        margin-right: -7%;
        margin-top: -18px;
    }
    
    span.previous {
        float: left;
        margin-left: -7%;
        margin-top: -18px;
    }

    Or it could be position:relative and assign top and left , right.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Posts on last page look different’ is closed to new replies.