Form button question

  • Thread starter Thread starter Josh
  • Start date Start date
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 ?
 
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
 
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
| > ?
| >
|
|
 
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.
==============================================
 
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.
==============================================
 
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.
 
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?
 
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?
 
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.
==============================================
 
Back
Top