I created a rollover image link... and the links don't work... can someone tell me what I got wrong....?
my code:
CSS is down here
#F {
position:absolute;
width:96px;
height:90px;
z-index:1;
background: url('facebook.png')
}
#F:hover {
background-image: url('facebook_hover.png')
}
#T {
position: absolute;
width: 96px;
height: 90px;
z-index:1;
background: url('twitter.png');
left: 132px;
}
#T:hover {
background-image: url('twitter_hover.png')
}
#Gplus {
position: absolute;
width: 96px;
height: 90px;
z-index:1;
background: url('g+.png');
left: 132px;
top: 300px;
}
#Gplus:hover {
background-image: url('g+_hover.png')
}
HTML
<div id="F">
<a href='http://facebook.com/'></a>
</div>
<div id="T">
<a href='http://twitter.com/'></a>
</div>
<div id="Gplus">
<a href='http://google.com/'></a>
</div>