Has anyone gotten zebra striping to work for the table? (alternating colors per row)
I see this part of the Theme css but cannot get it working:
/* Zebra Widget - row alternating colors */
.tablesorter-grey tbody tr.odd > td {
background-color: #111111;
}
.tablesorter-grey tbody tr.even > td {
background-color: #999999;
}[/code:3p4wuuvd]
I also don't can't seem to properly implement this sort of css into what's there:
[code:3p4wuuvd]tr:nth-child(even) {
background-color: #f2f2f2
[/code:3p4wuuvd]
The closest thing I've done is implement a font color change on ever other row using actions, but that gets ruined when sorting. Great plugin, though!