devon310:
I think I found that White BG problem.
now on http://www.thewishingwellshop.com/wish/index.php?main_page=specials
now they show in one column how do I get these back to show in rows of 3?
Is that in Admin?
Warm Regards,
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:
#logo {text-align:center;}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float:left;
}