SIGH, I answer this question SO often, LOL, everyone does the SAME thing.
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:center;
}
First of all, there's no such thing as float center.
Second of all, you didn't just change #logo with your change, see the 5 other things after #logo? If you want to center the logo, only change the logo, let the other 5 things keep float:left:
Code:
#logo {text-align:center;}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}
Bookmarks