Instead of using this code for a button:
- Code: Select all
<input type="submit" name="submit" />
(This is a standard submit button)
Use this for an image:
- Code: Select all
<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: Select all
<input type="image" name="submit" src="image.jpg" style="border:0;" />




