Gravity Forms doesn't have any default button styles. It's purposely designed to inherit styles like that from your theme. If you want to use the default browser button styles, you'll just need to remove the button styles from your theme CSS.
You can also use CSS inheritance to set different button styles for the form itself.
example:
[css]
body .gform_wrapper .gform_footer input[type=submit] {border:1px solid red}
You can find examples of how to do that and more in the documentation here.
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples
Posted 14 years ago on Monday June 20, 2011 |
Permalink