Lee,

Alternating row colors are very easy in Zope because of the variables 'sequence-odd' 
and 'sequence-even' defined by the <dtml-in> tag.

A super quick example:

<table bgcolor="#ffffff">
<dtml-in some_list>
 <tr <dtml-if sequence-odd>bgcolor="#EEEEEE"</dtml-if>>
   <td>Your cell data here</td>
 </tr>
</table>

You can code variations on this to get what you need.

-Darin




_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )

Reply via email to