Should be easy enough to do using VAR's in a custom page template.
Something like:
<table>
[-- VAR.CellColor "Color1" --] (where "Color1" is actually the color
you want to use)
[-- LOOP PRODUCTS --]
<tr>
<td bgcolor=[-- VAR.CellColor --]>
[-- PRODUCT --]
</td>
</tr>
[-- IF VAR.CellColor "Color1" --]
[-- VAR.CellColor "Color2" --]
[-- ELSE_IF VAR.CellColor "Color2" --]
[-- VAR.CellColor "Color1" --]
[-- END_IF --]
[-- END_LOOP PRODUCTS --]
</table>
The IF tags that cycle the colors could even be done inside the product
template if your wanted. Lots of ways to do it.
-Loren
Scott Norman wrote:
Has anybody done alternating row colors on products in a table?
Scott