How can i change the margin for the categories listing. The class is .productListing-odd and .productListing-even but when i add margin to it, nothing happens. The categories pictures appear directly beneath each other.
How can i change the margin for the categories listing. The class is .productListing-odd and .productListing-even but when i add margin to it, nothing happens. The categories pictures appear directly beneath each other.
nevermind, i figured it out. didn't know i had to add td at the end
/* space & border between listing items */
.productListing-odd td, .productListing-even td {
vertical-align: top;
padding: 0.5em;
margin-bottom: 1em;
border-bottom: 3px double #aaccbb;
}
(i copied that from a different post)
you have to add yourself. put it at the end of the stylesheet
Worked like a charm. Thanks!