View Single Post
Old 09-08-2003, 10:08 PM   #12 (permalink)
bdl
Senior Contributor
 
Join Date: May 2002
Location: vta.ca.usa
Posts: 555
bdl is on a distinguished road
Just make this change, it's a simple CSS trick to change the cursor to a hand over the table cell:
Code:
<td style="cursor: pointer; cursor: hand;"
 onMouseOver="this.bgColor='#D3D3D3'"  onMouseOut="this.bgColor='#FFFFFF'";>
this should change color and look like a link
</td>
You could, of course, just make it a CSS class at the head of your document, like
Code:
td.rollover { cursor: pointer; cursor: hand; }
This, is of couse, if I understand you correctly that you want to make a 'fake link' on the rollovers...

http://devedge.netscape.com/viewsource/2002/cursor/
bdl is offline   Reply With Quote