I'm supplying the code for a simple form for another department to add to one of their web pages.
The problem is, they've code some mass-complicated css going on and it's making the buttons look like black text on an orange background (which is how they've set it up for other forms on their website with a "INPUT[type=button]" definition) I want my button to look "normal" So I can override their style sheet with some inline css
like this:
<input type="button" name="one" value="1" style="xxxxxxx" />
Problem is, I can't figure out how to 'style' a button to look like the defaults of a form button without using images.
Can anyone help, even getting me close would be great.
Thanks!
Try This
.specialbutton
{ border: font-size: 11px; color: #FFFFFF; font-weight: normal; font-family: arial; background-color: #CC0000; text-decoration: none;
}
<input type="submit" value="Submit form" class="specialbutton">
Hope it works
Salamay