View Single Post
Old 10-22-2008, 01:34 PM
Admin Admin is offline
Administrator
Join Date: Jul 2007
Posts: 120
  #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