Forum Moderators: not2easy
However, I'd like them to turn a color when hovered over. I've tried
.crack{
background-color:transparent}
.crack:hover{
background-color:red}
<area "class="crack" cords...
but it doesn't play. Testing in Firefox.
Any suggestions?
in your code wrap the objects of class crack in an anchor tag. For example:
<a class="hack" href="javascript:void()"><div class="crack"></div></a>
now in your css put this:
a.hack:link .crack,a.hack:visited .crack
{
background-color:transparent;
}a.hack:hover .crack
{
background-color:red;
}
that should work! It has its limitations on what can be put inside of the anchor tag (which is why my drop-down ain't working...) but hopefully it works for you. Tell me if it does or not!
Ryan