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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Do MouseOvers work in NN?

Status
Not open for further replies.

corpsinhere

Technical User
Feb 15, 2000
23
US
I am having trouble getting MouseOvers to work in NN either with styles or with in-line JavaScript. These code snippets work fine in IE but nadda in NN (obviously they do dif things but neither works at all in NN):
Code:
<a href=&quot;stone.html&quot; onMouseOver=&quot;document.kitty.src='smallwinkkitty.gif'&quot;>Stone Roberts</a>

OR

<style type=&quot;text/css&quot;>
<!--
	a:link {color:yellow;background:black;text-decoration:none;}
	a:visited {color:yellow;background:black;text-decoration:none;}
	a:hover {color:black;background:yellow;text-decoration:none;}
-->
</style>

Thanks for any help!
 
This is the way I do it, and it works in IE and NN.

<style>
<!--a:hover{color:green; font-weight:bold; font-style:italic; text-transform:lowercase; text-decoration:none }-->
</style>

Can't help you with the mouseover graphics though, sorry. Cheers,
Jim
reboot@pcmech.com
Moderator at Staff at Windows 9x/ME instructor.
Jim's Modems:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top