Hi, If I follow you correctly you want to do it onMouseover... The following will work for IE... I think 4.x and up. It doesn't work in NN 4.x, but I don't know about 6.x versions:
<table width="200" border="0" cellspacing="0" cellpadding="0"> <tr> <td style="width:100%; background-color:#FFFFFF" onMouseover="this.style.backgroundColor='#CCCCCC';" onMouseout="this.style.backgroundColor='#FFFFFF';"> Watch me get scared! </td> </tr> </table> You can use this for NN 4.x, however I haven't tested it in 6.x: <table width="200" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <ilayer> <layer id="mylayer" bgColor="#FFFFFF" width="100%" onMouseover="this.bgColor='#CCCCCC';" onMouseout="this.bgColor='#FFFFFF';"> <a href="##">My text link here</a> </layer> </ilayer> </td> </tr> </table> You could do a browser sniff and use <cfif><cfelse></cfif>to determine which one to show the user, based on their browser. HTH, Mike > -----Original Message----- > From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 18, 2001 2:13 PM > To: CF-Talk > Subject: Off Topic > > > Sorry for posting this here but I could not find a CSS list > that had people responding on it.. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

