Unfortunately, the username and password you have entered do not match!

Registration

Unfortunately, this username is already taken!

Unfortunately, this e-mail address is already used!

Please retype the verification code.

All fields are required

RSForm!Pro - How do I add an image to a submit button ?

How do I add an image to a submit button ?
There are two ways of doing this:
  1. Instead of a Submit Button, use an Image Button. In the "Image Button" field enter the relative path of the image. For example: http://www.mywebsite.com/images/submitimage.jpg.
  2. You can add your own css class to the submit button by writing:
    class="myclass"
    
    in the "Additional Attributes" field. The css class should contain something like this:
    .myclass
    {
     background: url(''images/submitimage.jpg'') no-repeat;
     width: 200px;
     height: 200px;
     border: 0px;
    }
    
Feedback