Help with FP Search component

J

JR

Is there a way to add spacing between the "Start Search" and the
"Reset" buttons in the FrontPage Search Form? The buttons are always
side by side.

Also, can an image be used instead of the standard buttons?

Thanks.
J.R.
 
T

Tom Pepper Willett

No, sorry.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
| Is there a way to add spacing between the "Start Search" and the
| "Reset" buttons in the FrontPage Search Form? The buttons are always
| side by side.
|
| Also, can an image be used instead of the standard buttons?
|
| Thanks.
| J.R.
|
 
S

Stefan B Rusynko

Apply a CSS style to the input tag in a style sheet for padding




| Is there a way to add spacing between the "Start Search" and the
| "Reset" buttons in the FrontPage Search Form? The buttons are always
| side by side.
|
| Also, can an image be used instead of the standard buttons?
|
| Thanks.
| J.R.
|
 
S

Stefan B Rusynko

In the head section of the page add a style for input tags margins as

<style type="text/css">
input {
margin-left: 20px;
margin-right: 20px;
}
</style>



| Stefan,
| If you would, please explain specifically how to do this.
|
| Thanks.
| J.R.
|
|
| On Fri, 17 Dec 2004 08:52:52 -0500, "Stefan B Rusynko"
|
| >Apply a CSS style to the input tag in a style sheet for padding
|
 
Top