Hi, just wondering if there is a solution for using an image for a submit button using the HTML shortcut. I've tried it using a background image, but not the way you can do it using a regular image and regular syntax:
<input type="image" src="the_image.gif">,
but, this is the only way I could come up with using the CGI.pm shortcut method...
print $q->submit({ -name => 'the_name',
-value => '',
-style => 'background-image:url(the_image.gif);width:100px;height:24px' });
...is there another way...?
Thanks
<input type="image" src="the_image.gif">,
but, this is the only way I could come up with using the CGI.pm shortcut method...
print $q->submit({ -name => 'the_name',
-value => '',
-style => 'background-image:url(the_image.gif);width:100px;height:24px' });
...is there another way...?
Thanks