HTML help, is this impossible?

dailytrak

Banned
Nov 22, 2011
24
0
0
How do I manipulate the code so the "submit" button is to the right of the "text box" instead of underneath the text box?

<div style="background: #transparent;">
<input name="email_address" size="10" style="margin-top: 1px; margin-bottom: 10px; border: 1px solid #999; padding: 3px;"/>
<br/>
<input type="image" value= <img src="http://www.mysite.com/dt_subscribe_btn.gif"
</div>
</form>

Thanks guys this is driving me CRAZY!
 


<div style="float:left">

<div style="background: #transparent;">
<input name="email_address" size="10" style="margin-top: 1px; margin-bottom: 10px; border: 1px solid #999; padding: 3px;"/>
</div>

</div>

<div style="float:left">

<div style="background: #transparent;">
<input type="image" value= <img src="http://www.mysite.com/dt_subscribe_btn.gif">
</div>

</div>
<br clear="all">

should work
 
1 small problem, works great but the text box and button are hugging each other to close.

How do I give a little space between the text box and submit button? Maybe 5 px or something.

Thanks so much for your help!