From: ArizonaJohn on
Hello, how can I move a form input field & form input button up about 20 pixels?
From: webstaffuk on
Hi you could put them into a DIV or other container and use CSS to position them where you want..

<div style="padding-left:20px; padding-top:20px;">
<input name="input" type="text" >
</div>
From: ArizonaJohn on
Thanks. I'm not a CSS master. Could you give me an example of what I could type exactly in the style sheet and what I could type exactly in the HTML?