Submit Button as an Image

liunx

Guest
Is there a way to have the submit button in a form as an image? If so how?:)<!--content--><style type="text/css"><br />
#submitter{<br />
background:#ffffff url(image.gif);<br />
}<br />
</style><br />
</head><br />
<body><br />
<form id=form1><br />
<input type="submit" id="submitter"><br />
</form><br />
</body><!--content--><style type="text/css"> <br />
#submitter{ <br />
background:#ffffff url(image.gif); <br />
} <br />
</style> <br />
</head> <br />
<body> <br />
<form id=form1> <br />
<input type="submit" id="submitter"> <br />
</form> <br />
</body><br />
<br />
<br />
what is background:#ffffff url(image.gif); <br />
<br />
url (image.gif);<br />
<br />
cus if i just put<br />
background:#ffffff url(image/next.jpg);<br />
it does not work<!--content-->you have a link, cuz I tested locally and it worked fine?<!--content-->Here is the plain HTML way. This will be treated the same as a submit form control.<br />
<br />
<br />
<input type="image" src=http://www.webdeveloper.com/forum/archive/index.php/"yourImageUrl.gif" name="btnSubmit" /><br />
<br />
<br />
Regards.<!--content--><button type="submit"><img src=http://www.webdeveloper.com/forum/archive/index.php/"blah" /></button><br />
<br />
don't flame me on that one being not so well supported plz...<!--content-->
 
Back
Top