|
-
Nov 27th, 2001, 11:51 PM
#1
Thread Starter
PowerPoster
<A HREF> properties???
Anyone know how to remove the underline from a web-link?
I'm sure it's possible, I just have no idea how...
-----------------------------------------
-RJ
[email protected]
-----------------------------------------
-
Nov 28th, 2001, 02:08 AM
#2
PowerPoster
Hi
Here is a simple way
Code:
<a href="yourpage.htm" Style="text-decoration:none">Click Here</a>
Regards
Stuart
-
Nov 28th, 2001, 08:25 AM
#3
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
-
Nov 28th, 2001, 04:43 PM
#4
Thread Starter
PowerPoster
Cheers!
-----------------------------------------
-RJ
[email protected]
-----------------------------------------
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|