Forums
This topic is locked
remove underline on text link..
Posted 07 Nov 2001 04:49:40
1
has voted
07 Nov 2001 04:49:40 mike quintela posted:
just wondering if the underline on a text link can be removed?Thanx
Replies
Replied 07 Nov 2001 17:21:42
07 Nov 2001 17:21:42 Carlos Pires replied:
<font face='Tahoma'>Yes, you can do it.
Just use a css like this one:
<style type="text/css">
<!--
a { text-decoration: none}
-->
</style>
but this way all your links will be no underline.
You´d better create a custom style and apply it to
links you don´t want to be underline.
example:
<style type="text/css">
<!--
.nounderline { text-decoration: none}
-->
</style>
<body.....
<a href="mylink.com" class="nounderline">my link</a>
</body>
Câmbio.
</font id='Tahoma'>
Just use a css like this one:
<style type="text/css">
<!--
a { text-decoration: none}
-->
</style>
but this way all your links will be no underline.
You´d better create a custom style and apply it to
links you don´t want to be underline.
example:
<style type="text/css">
<!--
.nounderline { text-decoration: none}
-->
</style>
<body.....
<a href="mylink.com" class="nounderline">my link</a>
</body>
Câmbio.
</font id='Tahoma'>