New Zenner
- Join Date:
- Feb 2010
- Location:
- Canada
- Posts:
- 7
- Plugin Contributions:
- 0
Subcategorie in a row not in a column
Subcategorie is showing op in a row, not in a column. How to change that?
Look at http://helene-corbin.com/boutique/
Thanks
Views: 438
New Zenner
Subcategorie is showing op in a row, not in a column. How to change that?
Look at http://helene-corbin.com/boutique/
Thanks
Black Belt
The subcategories by default have a float: left; property, which your template is missing. You probably deleted it from a group rule to fix something else, not realizing the fallout it would have.
You can put it here
stylesheet.css (line 115)
#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
float: left;
margin: 0;
padding-top: 0;
text-align: center;
}
or if that causes a problem somewhere else, give it its own rule:
.categoryListBoxContents {
float: left;
}
I suspect you will want the float for all but maybe one of those selectors.
New Zenner
Thank you so much for your help. It worked.
Tell staff why this post should be reviewed.