Quote Originally Posted by davidperks View Post
?? no its still at the left, my screen res is 1600x1200, I take it yours is lower which is what might make it seem centre
No, I'm at 1680 x 1050, and also, no matter the width of the browser, it is center. What browser are you using? I'm using firefox.

But looking at your css, I see some issues. Change the below::

#logoWrapper {
width:auto;
}

#logo {
float:center;
padding-left:30px;
text-align:center;
padding-bottom:10px;
}


to this:

#logoWrapper {
margin:0 auto;
}

#logo {
text-align:center;
padding-bottom:10px;
}


And that will center it. Also realize that the right side of your image isn't cropped as tightly as it could be, so with the code above it will seem cocked to the left a bit, but it really should be centered then. By the way, there's no such thing as "float:center", there's only float:left and float:right.