Trying to use a rollover image for my submit button. You can see what I'm trying to do on my sandbox site here:
Originally I'd tried using the custom button option in the advanced settings of the form itself, but of course, as it's a rollover image, it showed the whole thing. Right now, I'm targeting the button like this:
.button {
background: url(images/submit.png) 0 0;
border: none;
cursor: pointer;
width: 101px;
height: 32px;
float: left;
margin: 0 499px 0 0;
}
.button:hover {
background: url(images/submit.png) 0 -32px;
}
That pretty much works, but you can still see some of the "base button" behind it...haven't been able to turn that off. Any help appreciated. Thanks!
Biagio