PDA

View Full Version : mouse over links


thegamerguy
18 Dec 2004, 11:22pm
Does anyone know to make it so when ur mouse goes over a link it changes to a different color? I know the code for pictures to do that, but i can not figure out the one with letters instead of pictures. :confused:

Thrax
18 Dec 2004, 11:26pm
<style>
a:hover{
color:red;
}
</style>

Place it in the HEAD portion of your HTML, and change the colour red to any hex or ASCII value you please.

thegamerguy
19 Dec 2004, 12:46am
it works great thanks for the code :D