Text color change on mouse over

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need have my hyperlink text change color on a mouse over.
What is the code for this?

Thanks
 
It's done with CSS

Add this to the head section of your page.
Change colors as desired.

<style type="text/css">
a:link {
color: red;
text-decoration: underline;
}
a:hover {
color: green;
text-decoration: underline;
}
</style>

If you don't want underlines, change underline to none


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Right click your Hover Button,Select Hover Button Properties and you will see
you have a choice of the colour of your button and the colour of your Effect
which should be lighter than the button. Select whichever combination suits
you.
Editor 29
 
Back
Top