Re: How to make this image work
It's actually not that hard. First cut the text box image out and save it as it's own image then in your html add a class to your text input
[code:11f4bl4p]
<input type="text" class="text_field" name="firstname"/>
[/code:11f4bl4p]
Then in your CSS do
[code:11f4bl4p]
.text_field {
background-image:url("images/form_bg.gif");
}
[/code:11f4bl4p]
Set a height and width in the CSS as well and add what ever padding you want.