Form button question

J

Josh

Is it possable to change the look of the submit button on a search form fro
something that looks like this to something that looks more like this ?
 
J

Josh

Sorry the images did not turn out but what I want to do is get rid of the
grey square button and use an image that I have. Can this be done?

Thank you
Josh
 
S

Stefan B Rusynko

No
All you can do is apply a CSS style to the existing buttons




| Sorry the images did not turn out but what I want to do is get rid of the
| grey square button and use an image that I have. Can this be done?
|
| Thank you
| Josh
| | > Is it possable to change the look of the submit button on a search form
| > fro something that looks like this to something that looks more like this
| > ?
| >
|
|
 
T

Thomas A. Rowe

Not with the search form.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
M

Murray

Oh. Dang. Sorry.

--
Murray
============

Thomas A. Rowe said:
Not with the search form.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
A

Andrew Murray

more like what?

If you're talking about the FP web-bot search form then no.

Otherwise yes, you can.

use an image as a submit button:

<input type="image" value="submit" name="submit">

but you can't do this with a reset button.

Also with styles, you can apply an image to a normal "button" input type.
 
T

Trevor L.

Andrew,

This confused me for a while, so I experimented

I guess you mean something like this

<input type="image" value="submit" name="submit"
src="images/display/trevor.jpg" alt=" "
width="20" height="20">

Am I correct?
 
M

Murray

Yes.

--
Murray
============

Trevor L. said:
Andrew,

This confused me for a while, so I experimented

I guess you mean something like this

<input type="image" value="submit" name="submit"
src="images/display/trevor.jpg" alt=" "
width="20" height="20">

Am I correct?
 
T

Thomas A. Rowe

Yes, with the exception of the Submit button on the FP Search Form.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Top