Using CSS to Customize Your Submit Button
You can use
CSS to customize your submit button, even on your FrontPage forms. For
example,
input.noborder
{
border: none;
background-color: #fff;
color: #000;
font-family:"Comic Sans MS"
}
And then you can apply this class to your button
<input type="submit" value="Submit" class="noborder" />
Will have your
submit button look something like:

You can change the font family as needed along with CSS properties.
If you change the the border properties to something like
border: solid #fff 2px;
This will
add a border to the button and look something like

.




Comments