does anyone know how I could change the even/ odd rows in the new product listings?
DaisieCompany.com--test
Thank you in advance
** EDITED *** Never ever post in a forum, email, newsletter etc. the zenid or zenAdminID or you will be doomed!!![]()
does anyone know how I could change the even/ odd rows in the new product listings?
DaisieCompany.com--test
Thank you in advance
** EDITED *** Never ever post in a forum, email, newsletter etc. the zenid or zenAdminID or you will be doomed!!![]()
Put this in your CSS:
.productListing-odd td, .productListing-even td {
vertical-align: top;
padding: 0.5em;
margin-bottom: 1em;
background-color: black; (<-- insert your background color here)
color: white; (<-- insert your foreground color)
}
Or you can split the heading and make different colors for odd and even rows.
let me know if that works...
Thank you, it worked great for my all product listing, but not on the new listing, any ideas for the new product listing?
Thank you!
try this...
newProductsDefault {
vertical-align: top;
padding: 0.5em;
margin-bottom: 1em;
background-color: black;
color: white;
}
Not sure if this is what you want but I'm just guessing that it is...
Oh... one thing that would help you out is to get aardvark for Firefox plugin. This allows you to see the classes and other information. This is how I find out what is where :)
Last edited by crabdance; 5 Nov 2007 at 03:03 AM. Reason: more info