
Originally Posted by
organicplanet
Everybody and their gramma seems to make this mistake, LOL. You changed this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {float:left;}
to this:
Code:
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {text-align: center;}
If you only wanted the LOGO to change, you should seperate the logo out, so that you don't change 5 other things at the same time:
Code:
#logo {text-align:center;}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {float:left;}

Originally Posted by
organicplanet
3) Finally, in the right hand side boxes, the "Catagory drop-down" feature is squished. How do I unsquish it?
Try adding this to your stylesheet:
Code:
.sideBoxContent select {margin:0; padding:0;width:150px;}
Bookmarks