Hyperlinks without lines under them

liunx

Guest
HOW THE HELL do I make hyperlinks without lines underneath them? I tried adding this to the hyperlink code: class="textlink"<br />
<br />
How can I make them DAMNED LINKS :confused: :confused:<!--content-->Add this to the <head> of your document:<br />
<br />
<style type="text/css"><br />
a {<br />
text-decoration: none;<br />
}<br />
</style><br />
<br />
If you want to use a class, you do that something like this:<br />
<br />
<style type="text/css"><br />
a.textlink {<br />
text-decoration: none;<br />
}<br />
</style><br />
</head><br />
<body><br />
<p><a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.w3c.org" class="textlink">W3C</a></p><!--content-->look here:<br />
<br />
<!-- m --><a class="postlink" href="http://forums.webdeveloper.com/showthread.php?s=&threadid=4106&highlight=no+underline+on+links">http://forums.webdeveloper.com/showthre ... e+on+links</a><!-- m --><!--content-->Thanks a lot guys! :) :D :) :D<!--content-->Sure thing...<!--content-->How can I make blue tooltip like a table show when the mouse is over a link? I (think I) know it uses onMouseover<!--content-->This, perhaps? <!-- m --><a class="postlink" href="http://www.dynamicdrive.com/dynamicindex5/popinfo.htm">http://www.dynamicdrive.com/dynamicindex5/popinfo.htm</a><!-- m --><!--content-->
 
Back
Top