A case of self sabotage...
In your stylesheet.css, find;
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: center;
}
Replace above with stock code;
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}
Two things to explain;
1) You don't have a floating logo to center anyways, asides from the error explained below.
2) You've basically commanded a combo of classes to a improper declaration. Anytime you wish to center something(asides from background images), you should use "text-align: center" instead of "float: center"
If you want to isolate one target from a combo/group, remove "#logo," from the combo and make a separate entry for it... like; #logo { text-align: center }
Not to worry, for a self proclaimed "noob"... you only had one error. You'll get Zenned in no time.