I am trying to style a basic HTML form that uses an image background:
<form style="
background:url(http://moneythink.org/wp-content/uploads/2012/06/Moneythink-Newsletter-Signup-Background.jpg) no-repeat;
padding:90px 0px 60px 122px;">
<input type="email" value="Email" name="EMAIL"
class="required email" id="mce-EMAIL"
style="width: 100px;" style="padding-bottom: 5px;">
<input type="image" src="http://moneythink.org/wp-content/uploads/2012/06/Submit-Button.jpg"
alt="Submit button" style=" padding-left: 57px; padding-bottom: -40px;"
name="subscribe" id="mc-embedded-subscribe">
</form>
All is looking as expected, except, for some reason, I can't get the Submit button to appear directly underneath the text field; it keeps appearing next to it, on the right.
Any tips on how to fix this?