rollover image from text

Scottykav

New Member
Hey,

I am trying to make a navagation when you roll over text, an image somewhere else changes to another image, but i dont know how to do this. My friend said i could use CSS to code it but i hav no clue at all. The site i want to do it on is: http://www.wholesalemeat.tk and if you see where the links are and where the image is then could anyone please help me to make the image change to another picture when you roll over one of the links.

Thanks,
Scottykav
 

StephanieCordray

New Member
a:link { color: #660066; text-decoration: none }
a:active { color: #660066; text-decoration: none }
a:visited { color: #660066; text-decoration: none }
a:hover { color: #660066; text-decoration: underline }


Add this to your css file and change the colors to suit what you want. If you want a tutorial on css I would suggest www.webmonkey.com
 
Top