RE: links - 4/4/2001 16:16:00
Hi Kristy,Use CSS. I use an external file which is referenced by putting this in between you <head> <link REL="stylesheet" REF="css/style.css"> </head> tags. Then make a directory named css. Use Windows Notepad and put in... <style type="text/css"> a.nounder:link {text-decoration: none; } </style> Call it style.css (make sure when you go to save in Notepad that you click on file type and set it to "all files"). Move this new file to your CSS directory. Now go to where you want to use the no underline effect for your hyperlink and change it from... <a href="http://yourdomain.com"> to appear as follows... <a href="http://yourdomain.com" class="nounder"> All on one line. You are basicly adding class="nounder to the end of your hyperlink. And you will now have a non underlined hyperlink. Hope this helps, Brian ------------------ Work hard, play fair, stay sane [This message has been edited by GWJ (edited 04-04-2001).]
|