Subscribe RSS
Upgrade Jan 06

I’ve upgraded this site to WordPress 2.0. With any luck, you won’t have noticed!

6 Responses

  1. 1
    doctorvee 

    It looks a tad wonky in Firefox (there is no gap between the left sidebar and the middle section).

  2. 2
    Will 

    It was like that before the upgrade. It’s actually the gap between the right-hand column and the middle that shouldn’t be there but I haven’t been able to work out how to fix it 🙁

  3. The gap appears because the width of #container is 867px yet the three columns only add up to 856px.
    I’ve tested your blog with the following and the gap disappears

    #container
    {
    position: relative;
    margin: 0 auto; /* center on everything else */
    width: 856px;
    text-align: left;
    background: #ffffff;
    border: 1px solid #000000;
    }

  4. ps. I’ve noticed the main page doesn’t say how many comments there are, and also I have to fill my details each time I post a comment.

  5. Not trying to hog your comments but you might also want to try this as well

    #container-inner
    {
    position: static;
    width: auto;
    float: left;
    background: #ffffff;
    }

    Also run your blog through a validator as Firefox can get a bit picky.

  6. 6
    Will 

    Ah. Typical IE letting it go 🙂 Should be OK now, although I don’t have Firefox on my laptop to check.

    The comment count problem was related to Spam Karma. I’ve installed a WP2 compatibility plugin and run the comments through it. Seems to have done the trick.