Thread: CSS Help
View Single Post
Unread 08-04-2007, 02:18 AM
bcarl314 bcarl314 is offline
Senior Member
Join Date: Aug 2007
Posts: 141
  #2  
Default

Not tested, but something like this should work. First, give your input tag an id...

Code:
<input name="fullname" id="fullname" value="" />
Then in your css, apply a background image...

Code:
#fullname {
    background-image:url("/path/to/image.jpg");
}
Reply With Quote