I am not sure what i changed, the sub categories were displaying horizontally, but now they are displaying vertically, what could i have changed? here is my site,
http://gtc-music1.com/store/index.ph...=index&cPath=3
I am not sure what i changed, the sub categories were displaying horizontally, but now they are displaying vertically, what could i have changed? here is my site,
http://gtc-music1.com/store/index.ph...=index&cPath=3
Your problem is with this section. It used to have float:left;
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: center;
margin-top: 12px;}
}
Change it back to float:left;, and also remove the second }
And fyi, there's no such thing as float:center, only float:left and float:right. If you want something centered, you can use
text-align:center;
margin:0 auto;
Thanks Jade for the quick response