For some reason, my :hover isn't working. Here's my CSS code:
.image:hover
{
border:#000000;
background-color:#FF66FF;
box-shadow:rgb(0,255,153);
}
And my HTML
<div id="header">
<a href="index.html"><img src="header.png" class="image" onload="ChangeColors(this)" /></a>
</div>
Any ideas on why this isn't working?
onload="ChangeColors(this)"?<a>...</a>and mergehrefinto theimgtag, and it has the same effect.