View Single Post
Unread 10-22-2008, 01:34 PM
Admin
Posts: n/a
  #2  
Default

In the td you want to change, try this...

Code:
<tr onmouseover="this.style.backgroundColor='#ffffff';" onmouseout="this.style.backgroundColor='#eeeeee';">
    <td>Something </td>
    <td>Next column</td>
</tr>
Reply With Quote