Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating Active Links

Status
Not open for further replies.

danielh68

Technical User
Joined
Jul 31, 2001
Messages
431
Location
US
Hi,

How do I create links that lite up during a mouseover? I thought selecting color for links, active links and visited links in page properties would render the approriate effect. I was wrong. Viewing through IE they don't lite up. Any suggestions?

Thanks,
Dan
 
Hi,

Use this; put it in the <head> of the source-code:

<style type=&quot;text/css&quot;>
<!--
A:link {COLOR:blue ; TEXT-DECORATION: none; }
A:visited {COLOR: blue; TEXT-DECORATION: none}
A:hover {COLOR: red; TEXT-DECORATION: none ; }
A:active {COLOR: blue ; TEXT-DECORATION: none; }
-->
</style>

Or wahtever color you like. For more info look here: or look here:
HTH,

Quasibobo Don't eat yellow snow!
 
Thanks. Helps immensely. -- Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top