Link to home
Start Free TrialLog in
Avatar of Harimogura
Harimogura

asked on

Mouseover effect (color change) for html links in Firefox

My pages do not use CSS overall, but I use the snippet below to get a mouseover effect for links in which the links change colors when you move the mouse over them.

 It works OK in IE6 Window and IE5.2 Mac but it doesn't seem to work with other browsers, i.e. Firefox or Safari and I would like this effect to work for Firefox, Safari  and other users, too.

<style type="text/css">
<!--
a:link {text-decoration: none}
a:visited {text-decoration: none}
a:active {text-decoration: none}
a:hover {color="#7CB33D"}
-->
</style>


You can see what  I mean at http://markal.org
Avatar of sajuks
sajuks

<style type="text/css">
<!--
a:link {text-decoration: none}
a:visited {text-decoration: none}
a:active {text-decoration: none}
a:hover {color:#7CB33D}
-->
</style>
ASKER CERTIFIED SOLUTION
Avatar of sajuks
sajuks

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Harimogura

ASKER

Thank you very much for your quick reply. I had a feeling that it was something REALLY OBVIOUS that I was missing, and I was right. I'm glad that other people can see this kind of thing a lot faster than I can!
Thanks for the poinst and grade
arghh ...points and not poinst
it works in firefox
;) probably coz u fixed it and i've come too late..
Yes, that's correct: I've already uploaded the new index file with the corrected code., but thanks for coming by!!!