Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Product listing shade every other row

Product listing shade every other row

Locked

Views: 742

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
3 Feb 2009, 11:25 AM
#1
conmac863 avatar

conmac863

New Zenner

Join Date:
Jan 2009
Posts:
13
Plugin Contributions:
0

Product listing shade every other row

Hi All.
I have look throught the contribs and forum but have not found anything.
I have a site and when you click on a catagory and all the products show up the back ground is white on all. I have seen Zen carts where the product listing has shaded background for every other item.

Product1 - white background
Product2 - Grey background
Product3 - white background
Product4 - Grey background

Any idea where or how to do this?
Thanks
Sean

3 Feb 2009, 11:28 AM
#2
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Location:
Cape Town & London (depends on the season)
Posts:
2,957
Plugin Contributions:
0

Re: Product listing shade every other row

Please put up a URL to your site so I can see the CSS.

If you do this, I will be able to help.

3 Feb 2009, 11:47 AM
#3
fairestcape avatar

fairestcape

Totally Zenned

Join Date:
Mar 2008
Location:
Cape Town & London (depends on the season)
Posts:
2,957
Plugin Contributions:
0

Re: Product listing shade every other row

I have the following in one of my websites' stylesheet.

Try adding it to the bottom of your stylesheet.css .

td.productListing-data {
font-size:10px;
padding:5px;
}

tr.productListing-odd, tr.upcomingProducts-odd {
background:#E3E3E3 none repeat scroll 0 0;
}

tr.productListing-even, tr.upcomingProducts-even, .productsNotifications {
background:#EDEDED none repeat scroll 0 0;
}
3 Feb 2009, 12:18 PM
#4
conmac863 avatar

conmac863

New Zenner

Join Date:
Jan 2009
Posts:
13
Plugin Contributions:
0

Re: Product listing shade every other row

Thanks fairestcape ! !

Works like a charm ! ! !