Paul's CSS would have worked if you'd just put that in. But adding a class to the table is not powerful enough on its own to override some of the other styles. But you could do it with an id instead.
Remove all those "transtable" classes (a terrible idea, anyway!) and just have one id on your table:
Code:
<table id="transtable" width="100%" border="0" cellspacing="0" cellpadding="0">
</table>
Then paste this code into you CSS file:
Code:
#transtable, #transtable td{
border:none;
background:transparent;
}
#transtable tr:hover, #transtable td:hover {
background:transparent;
}
Bookmarks