Log in

View Full Version : Please help with hyperlinks



rjain
04-25-2006, 03:21 PM
Hello,

I am trying not to underline the hyperlink while creating the webpage. Can I do that? if yes, How can I go around doing it.

Thank you,

Twey
04-25-2006, 03:28 PM
In the head:
<style type="text/css">
a {
text-decoration: none;
}
</style>

rjain
04-25-2006, 03:42 PM
I just want one of the links on the page not to underline.

Twey
04-25-2006, 03:47 PM
<a style="text-decoration: none;" href="otherpage.html">CLICK</a>

rjain
04-25-2006, 05:57 PM
Thank you! it worked