Click to See Complete Forum and Search --> : Hyperlinks without lines under them
aoeguy
08-11-2003, 01:00 PM
HOW THE HELL do I make hyperlinks without lines underneath them? I tried adding this to the hyperlink code: class="textlink"
How can I make them DAMNED LINKS :confused: :confused:
Add this to the <head> of your document:
<style type="text/css">
a {
text-decoration: none;
}
</style>
If you want to use a class, you do that something like this:
<style type="text/css">
a.textlink {
text-decoration: none;
}
</style>
</head>
<body>
<p><a href="http://www.w3c.org" class="textlink">W3C</a></p>
look here:
http://forums.webdeveloper.com/showthread.php?s=&threadid=4106&highlight=no+underline+on+links
aoeguy
08-11-2003, 01:14 PM
Thanks a lot guys! :) :D :) :D
aoeguy
08-11-2003, 01:21 PM
How can I make blue tooltip like a table show when the mouse is over a link? I (think I) know it uses onMouseover
This, perhaps? http://www.dynamicdrive.com/dynamicindex5/popinfo.htm