Thread: non-underline links?
Results 1 to 5 of 5
Related
-
help with hyperlinks-underline and color Forum: HTML Forum
Replies: 1 -
I Can't Get Rid of the Underline Forum: HTML Forum
Replies: 6 -
How to Remove underline from hyperlink? Forum: CSS Forum
Replies: 5 -
How to Remove underline from hyperlink? Forum: HTML Forum
Replies: 0 -
underline, different colors, problems; please help! Forum: CSS Forum
Replies: 11
-
04-30-2002, 08:46 PM #1
non-underline links?
how can i make a link with no "underline"?
-
04-30-2002, 11:30 PM #2
<style class="text/css">
<!--
A:link {text-decoration: underline; color: #136C99}
A:visited {text-decoration: underline; color: #136C99}
A:hover {text-decoration: none; color: darkblue}
-->
</style>
this makes it so that when the mouse goes over the link there is no underline, but if you want the opposite, change the underlines to none and the none to underline.
Good luck
welcome to the forums
-
04-30-2002, 11:37 PM #3
<A STYLE="text-decoration:none" HREF="javascript:location.reload()"
TARGET=_self>Copyright</A>
That code is at the bottom of every one of my 600+ web pages - it allows me to refresh the page without having
visitors think the Copyright is a clickable URL; ie., it's NOT UNDERLINED because of the STYLE="text-decoration:none" in that anchor tag.
-
04-30-2002, 11:39 PM #4
well you can do that too, but if you want all your links across all your pages to not be underlined then use mine, but if it's just a certain one then you benzdens
-
05-01-2002, 10:25 PM #5