Is it possible, via CSS to remove or change the src reference in the markup below?
The easy thing to do would be to change the markup, however, this code is in the wild and I need to deal with it as it is, so I’m trying to remove the image and use a background image instead.
<input type="image" src="wp-content/uploads/image.png" name="submit" class="submit" value="Submit" />
You can experiment with setting height and width to 0, add a padding and set the background image. You will have to make it
display: blockordisplay: inline-blockfor the height to take effect.Here’s an example – http://jsfiddle.net/zBgHd/1/