Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I use an image for an INPUT TYPE button? 2

Status
Not open for further replies.

danielh68

Technical User
Jul 31, 2001
431
US
Hi,

I'm building this site at and would like to use a gif for a input type button.

For instance, the standard way is this:
<input type=submit value=&quot;GO&quot; name=&quot;Go&quot;>

This functions fine, but it's the default gray button. I like to use the current one on the site (the gif), so how would I do this?

Your expertise is appreciated.

Thanks
DanH
 
here's the syntax for doing this
<a href=&quot;&quot; onClick=&quot;document.formname.submit();&quot;><img src=&quot;&quot;></a> A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
or simple
<input type=&quot;image&quot; src=&quot;image.gif&quot; name=&quot;&quot;>
will also act as a submit button A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
in your case
<td width=&quot;447&quot; rowspan=&quot;3&quot; valign=&quot;top&quot;>
<input type=&quot;image&quot; src=&quot;images/header1.gif&quot; width=&quot;447&quot; height=&quot;95&quot;>td> A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
onpnt, man you really went the distance on that one... I have not failed; I have merely found 100,000 different ways of not succeding...
 
Thanks GUJUm0deL
I wasn't all there and kept remembering things after hitting submit[lol] been a long day

thanks for the star
A language that doesn't affect the way you think about programming is not worth knowing.
admin@onpntwebdesigns.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top