New Zenner
- Join Date:
- Dec 2005
- Posts:
- 59
- Plugin Contributions:
- 0
Apple Zen Support Thread
YOU ROCK!
Thanks & thanks again.
\m/
jettrue:
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;
}