TheCandyman
Technical User
I'm switching from javascript image overs to css on a website. Need some help as i can't seem to get a css image over working. I trying to follow the example of this:
I added that into my css file as:
But it doesn't show the image at all. I ran my css though and it said everything was good. In my webpage i have this
Anyone see anything wrong?
I added that into my css file as:
Code:
.Contact a {
display: block;
width: 230px;
padding:0px 0px 0px 0px;
background-image: url("[URL unfurl="true"]http://www.azda.org/images/ContactAzDA.gif");[/URL] background-repeat: no-repeat;
text-decoration: none;}
.Contact a:hover { background-position: 0 -45px;}
But it doesn't show the image at all. I ran my css though and it said everything was good. In my webpage i have this
Code:
<div class="Contact"><a href="contact.asp"></a></div>
Anyone see anything wrong?