I'm trying to make the 'next' 'previous' and 'submit' buttons show the images I've created instead of using text.
I did this in CSS by adding this code:
[css]
.gform_previous_button{
background-image:url('form_next.jpg');
width: 97px;
height: 50px;
border:0px;
color: transparent;
}
This seems to work fine in Firefox, but in Safari its showing a kinda white blob over each image. Its probably because the text 'value' still exists, but I don't know how to remove the text value from showing.
Any ideas?
Thanks