|
Hi everyone,
I have being trying to add a contact button image that is a link to an e-mail, but I cannot get the hover to work.
Please anyone could help me to make it work,as I have been trying and nothing seems to work:
CSS:
#contact_button {
background:url(images/contact.png.png);
width: 60px;
height: 18px;
margin: 0 0 0 720px;
list-style: none;
left: 73px;
float:left;
position:absolute;
outline:none;
}
HTML:
<div id="contact_button">
<a href="mailto:info@accuball.com.au">
<img src="images/contact.png.png" width=60 height=18 border=0></a></div>
I am trying to paste another image as a hover using:
CSS
#contact_button a:hover {
background:"contact_rol.png"
}
and it does not change over to the new image when I put the mouse over.
Please I would appreciate any advice.
Thanx in advance...
|