Forums / Templates, Stylesheets, Page Layout / categories listing margin?

categories listing margin?

Locked
Results 1 to 5 of 5
This thread is locked. New replies are disabled.
09 Jun 2007, 12:01
#1
rcallan515 avatar

rcallan515

New Zenner

Join Date:
Jun 2006
Posts:
71
Plugin Contributions:
0

categories listing margin?

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.
09 Jun 2007, 12:03
#2
rcallan515 avatar

rcallan515

New Zenner

Join Date:
Jun 2006
Posts:
71
Plugin Contributions:
0

Re: categories listing margin?

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)
14 Jun 2007, 00:38
#3
einstin avatar

einstin

New Zenner

Join Date:
Feb 2005
Posts:
71
Plugin Contributions:
0

Re: categories listing margin?

rcallan515:

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)


Where is this located at?
14 Jun 2007, 00:39
#4
rcallan515 avatar

rcallan515

New Zenner

Join Date:
Jun 2006
Posts:
71
Plugin Contributions:
0

Re: categories listing margin?

you have to add yourself. put it at the end of the stylesheet
14 Jun 2007, 01:16
#5
einstin avatar

einstin

New Zenner

Join Date:
Feb 2005
Posts:
71
Plugin Contributions:
0

Re: categories listing margin?

Worked like a charm. Thanks!