Quote Originally Posted by CnTGifts View Post
i thought there was a way the site could display good on all browsers
Yes, use a smaller logo. Decrease it to 800 pixels wide, then in the css, change this section:

Code:
#logoWrapper {
float:left;
	width:auto;

	}
	
#logo {
	float:left;
	
	text-align:center;
	}
to this:

Code:
#logoWrapper {
	}
	
#logo {
	text-align:center;
	}
Then your logo will be centered, and no matter the width of the site, it will look nice.