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 🙁
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
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.
It looks a tad wonky in Firefox (there is no gap between the left sidebar and the middle section).
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 🙁
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;
}
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.
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.
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.