PDA

View Full Version : [HTML] remove undeline from link


maca
06-09-2007, 02:40 PM
How do I make an underline appear when the mouse hovers over a link that has no underline?

Tyler
06-09-2007, 07:34 PM
When I searched Google: http://www.echoecho.com/csslinks.htm
Looks like a great resource, a simple Google search would have saved you 4 hours of waiting.

crisy
06-17-2007, 11:04 PM
<a href="ulmb.com" style="text-decoration: none">Click</a>

<a -starts the hyperlink tag
href="url here" -navigates to...
style="text-decoration: none" -this makes it have no underline boldness etc.
> -starts your links caption
Click -what you want people to see
</a> -closes caption and link tag

pikaruga
08-06-2007, 09:14 PM
How do I make an underline appear when the mouse hovers over a link that has no underline?

Copy and paste this into your site's CSS:


a:link {
text-decoration:none;
}

a:hover {
text-decoration:underline;
}