Re: Alternate Shading on Tracker Display
It's set by CSS — something like:
tr.even {background: #ffffff} tr.odd {background: #efefef}
If you want to get fancy, you can also do this:
tr.even:hover, tr.odd:hover {background: #fff7e6}
to highlight the row the pointer is hovering over. Not all tables in Tiki have the same construction, having been done by different people at different times. In some cases the row doesn't have a class but the cells do, so you have maybe
tr td.even tr td.odd
and sometimes there are no CSS classes used at all. It's best to use Firefox and the Firebug add-on to examine the page, to find out what CSS selectors and properties are being used.
-- Gary