All drupal tables starts with TH and then TR.odd TR.even ...
But views produce different - TR.even TR.odd ...

In file views-view-table.tpl.php

    <?php foreach ($rows as $count => $row): 

-

print ($count % 2 == 0) ? 'even' : 'odd';">
+
print ($count % 2 == 0) ? 'odd' : 'even';">
foreach ($row as $field => $content):
?>
CommentFileSizeAuthor
table.patch810 bytesandypost

Comments

merlinofchaos’s picture

Status: Needs review » Fixed

Committed! Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.