This is how you replace a standard submit-button with an image.
Instead of using this code for a button:
Code:
<input type="submit" name="submit" />
(This is a standard submit button)Use this for an image:
Code:
<input type="image" name="submit" src="image.jpg" />
(This code will show a border around the image)To remove the border around the image, use this code instead:
Code:
<input type="image" name="submit" src="image.jpg" style="border:0;" />