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:

pyro
08-11-2003, 01:05 PM
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>

CyCo
08-11-2003, 01:05 PM
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

pyro
08-11-2003, 01:17 PM
Sure thing...

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

pyro
08-11-2003, 01:23 PM
This, perhaps? http://www.dynamicdrive.com/dynamicindex5/popinfo.htm