For centering in your style sheet change:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
}
to
#logo {
text-align: center;
}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left
}
as for the background color to an image make sure your calling it right. i only see colors listed there.
also if you use firefox (and if you dont i would) you can d/l the developers tools and that will also help you be able to see where in the css you are trying to change. HTH