Not sure if you can make just the left border show ... You can do something like:
style.border:1px solid; style.border-color:white white white red; Those colors relate to: [top] [right] [bottom] [left] You may be able to do a left-border only, I don't have my CSS book handy right this second. You could try: border-left:1px solid; border-color-left:red; That might do it. Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254 ************************************************************************ ************* Any views expressed in this message are those of the individual sender, except where the sender states them to be the views of Garrison Enterprises Inc. This e-mail is intended only for the individual or entity to which it is addressed and contains information that is private and confidential. If you are not the intended recipient you are hereby notified that any dissemination, distribution or copying is strictly prohibited. If you have received this e-mail in error please delete it immediately and advise us by return e-mail to [EMAIL PROTECTED] ************************************************************************ ************* -----Original Message----- From: Ewok [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 1:31 PM To: CF-Talk Subject: Re: CSS - How to do this <script language="JavaScript"> function chooseit() { with (document.getElementById("thisone")) { style.border = "red thin solid"; } } </script> <table id="thisone" border="5" bobrdercolor="green" onmouseover="return chooseit();"> <tr> <td> blah blah blah bvlah </td> </tr> </table> ----- Original Message ----- From: "Mark Stephenson - Evolution Internet" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, February 06, 2003 11:49 AM Subject: OT: CSS - How to do this > Hey, > > When a user puts their mouse over a td i want the left borderline to > be red.... > > onMouseover="style.border-left= 'red thin solid';" > > Is what i thought would do it.... > > It works for style.border but i want only the left > > I am sure it is something silly that i am missing.... > > Ideas???? > > > Thanks, > > > > Mark Stephenson > New Media Director > Evolution Internet > T: 0870 757 1631 > F: 0870 757 1632 > W: www.evolutioninternet.co.uk > E: [EMAIL PROTECTED] > > > WARNING: > ------------------------------- > The information contained in this document and attachments is > confidential and intended only for the person(s) named above. If you > are not the intended recipient you are hereby notified that any > disclosure, copying, distribution, or any other use of the information > is strictly prohibited. If you have received this document by mistake, > please notify the sender immediately and destroy this document and > attachments without making any copy of any kind. > > AVIS IMPORTANT: > ------------------------------- > Les informations contenues dans le present document et ses pieces > jointes sont strictement confidentielles et reservees a l'usage de la > (des) > personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez > avise que toute divulgation, distribution, copie, ou autre utilisation > de ces informations est strictement prohibee. Si vous avez recu ce > document > par erreur, veuillez s'il vous plait communiquer immediatement avec > l'expediteur et detruire ce document sans en faire de copie sous > quelque forme. > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

