T
Thor
Is there a way to change the color of the [SUBMIT] button on a form? Maybe
even change the button graphic itself?
even change the button graphic itself?
Well, I'm OK with the border, and I've changed the font, but I don't see how
to change the background color.
Is there some way to create a custom button and assign it "submit" and
"Reset" properties?
Rob Giordano (Crash) said:You can a little bit;
Select the Submit button, right click, select Form Field Properties, then
Style then Format..e.tc.
--
~~~~~~~~~~~~~~~~~~
Rob Giordano
Microsoft MVP Expression
| Is there a way to change the color of the [SUBMIT] button on a form?
Maybe
| even change the button graphic itself?
|
|
|
Well, I'm OK with the border, and I've changed the font, but I don't see
how
to change the background color.
Ian Haynes said:Create a style for the button and this will allow you to change most
parameters, for example
.btn {
border-right: #808080 1px solid;
border-top: #808080 1px solid;
border-left: #4b4b4c 2px solid;
border-bottom: #4b4b4c 2px solid;
font: bold 100% verdana, sans-serif;
color: #fff;
background-color: #ff6500;
}
You could also change the height and width.
Then
<input name="Submit1" type="submit" value="Submit" class="btn" >