How to give alternate row shading to products listing in Zen Cart
When shopping carts list products, adding a little formatting and color to your web page can make all the difference.
for Zen cart row shading, simply add this CSS code to your style sheet.
.rowOdd {
background-color: #E8E8E8;
height: 1.5em;
vertical-align: top;
}
.rowEven {
background-color: #F0F0F0;
height: 1.5em;
vertical-align: top;
}
That’s it!




