Alternating background colors in product list

Please note that this works with lists and not multicolumns.


  1. In “/skins/CLIENT_SKIN/customer/styles.css”



    ADD TO THE END



#colored-plw {
background-color: #EEE;
}




2. In “/skins/CLIENT_SKIN/customer/products_pages/products.tpl”

and “/skins/CLIENT_SKIN/customer/products_pages/products_advanced.tpl”



REPLACE


```php

```

WITH

```php
```

AND BEFORE

```php
{foreach from=$products item=product key=key name="products"} ```

ADD

```php
{assign var="colored" value="Y"} ```

Sweeet!



I was trying to figure this out, first i added a second table row class, and tried this in products_list.tpl:






Needless to say it didn’t work!



mdekok3000 comes through again.

Thanks!