Yes, but how can i do it with text, instead of images? worth an extra 50 pts.
Main Topics
Browse All TopicsHow can i make it so when someone's mouse is over a link it would be one color and another when the mouse is not over?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is how you do it:
<a href="destination.htm"><fo
This will make a link called Destination Pages that will go to destination.htm Link will be black and then white when the mouse moves over the link. I use this on my page.
With what I gave you, you don't need DHTML or CSS. I have uploaded a sample for you at http://www.huron.net/~jlew
Check it out and it will work for you.
> With what I gave you, you don't need DHTML or CSS
Do you even know what these terms mean? CSS= Cascading STYLE sheets.
What would you call onmouseover="this.style.co
btw. your uploaded example doesn't work in Netscape.
Kind of what I said: The solution is a pain, and different for the two browsers! I regret not having enough time right now to play around and find a way to make it work in both browsers...
Good luck anyway! :-)
Business Accounts
Answer for Membership
by: tpryorPosted on 1998-06-19 at 19:41:51ID: 1844267
javascript.
NAME="Mainmenu" WIDTH="295" HEIGHT="405" ALIGN="BOTTOM">
'../gifs/m ainmen1.gi f';return showStatus(' ')" ../gifs/ma inmenu.gif '">
for instance,
>>store an image of the color to turn to (when mouse over) in a image var, ex:
<SCRIPT LANGUAGE="JavaScript">
<!-- HIDE
var menu = new Image();
menu.src = "../gifs/mainmenu.gif";
//STOP HIDING-->
>>name your image tag, ex:
<IMG SRC="../gifs/mainmenu.gif"
>> include this code in the anchor tag..
<A HREF="bikes.htm" onMouseOver="Mainmenu.src=
onMouseOut="Mainmenu.src='
-- Place above code here --
</a>
That's it.
GL
t