The easiest is to use jQuery, in my opinion. If you include template.js in the template it will be loaded. In that you could include a simple jQuery snippet to do striping. The default template includes that, by the way, so you can use that as an example: $(document).ready(function(){$("tr.entryItem:odd").addClass("entryAlternateItem")}); |