I have a problem with a form template I am working on, which has a default inline image.
<input src="//assets.emailmeform.com/images/submit-orange.png?RU1GLTAyLTI3" type="image" alt="Submit" onmouseover="return true;">
Is there any way of overriding this? I have
#ID input[alt="Submit"]{
background-image: url("url here")no-repeat !important;
However the result was the CSS image that I assigned was under the default inline image. Is there a way to hide the inline image so that the CSS image will appear on top?