Anyone know how to remove the underline from a web-link?
I'm sure it's possible, I just have no idea how...
Printable View
Anyone know how to remove the underline from a web-link?
I'm sure it's possible, I just have no idea how...
Hi
Here is a simple way
RegardsCode:<a href="yourpage.htm" Style="text-decoration:none">Click Here</a>
Stuart
removes all underlines from links from on the page
VB Code:
<STYLE> <!-- A{ text-decoration:none; } --> </STYLE>
removes all underlines from links with Class="styleset" (<A class="styleset" href="a.htm">link</a>)
VB Code:
<STYLE> <!-- A.styleset{ text-decoration:none; } --> </STYLE>
#chenko
Cheers!
:)