I have X number of tables on a page, each showing a job from a database. My problem is that the CSS for the zebra stripes sees all TD/TR tags as part of one table...or so it seems. So basically instead of:
Table1
ROW 1 - White
ROW 2 - Black
ROW 3 - White
Table2
ROW 1 - White
ROW 2 - Black
ROW 3 - White
I get:
Table1
ROW 1 - White
ROW 2 - Black
ROW 3 - White
Table2
ROW 1 - Black
ROW 2 - White
ROW 3 - Black
I've tried turning off the auto-zebra and manually inserting the class, but that didn't work. Does anyone know how I would modify the CSS to fix that?
Thank you!