Well i was trying to figure out a way so that when a user click on a item with in the table it will go to a link. So far i have just done the work around of mouse over on a <a></a> and then altering the background of a <td></td>
Now i can't put the onmouseover="changeBg()" in the <td> tag because it does not work on all browsers. But when i try to put it like so...
The DIV takes the shape of 100% width and what ever the height of the TEXT is, not the <TD>. So i figured ill try and make the height of the div 21 pixels, but i run into the problem of the text within the DIV valigning to the top and not middle and i dont know how to correct that.
The only other way i can think abou doing this is by adding another table with in the <TD> like so...
Now the <DIV> will wrap around the table but i just added 6 extra lines of html and i would have to mulitiply that per <TD>. Is there a common solution to this problem im missing?