|
Eddy R.
02/26/99
If you want a link to turn to a different color and to become underlined
when the mouse hovers over it you can do the following:
<style>
<!--.nu
{text-decoration: none; font-family: arial;}
A:hover {text-decoration: underline;
color:red}
-->
</style>
Since a link is underlined by default, you
can do the following to remove the underline (like the links on
this site)
<style>
<!--.nu
{text-decoration: none; font-family: arial;}
A:hover {text-decoration: none;
color:green}
-->
</style>
Simply replace the word underline
for none.
Also, in the example above the color to which
the link will change when the mouse hovers over it is "RED".
To change the color simply type in the desired color such as "Green"
If you use FrontPage 98 or any other HTML
Editor, all you have to do is copy this code and paste it on your
HTML document.
For example, to do this in FrontPage 98 just
click on the HTML tab at the bottom of your screen, once you see
the HTML code paste the code above in the HEAD of the document.
That should do the trick.
* Note that if you paste this in the head
of the Document, all links in the page will have the same effect.
|