Your theme styles are essentially hiding your form buttons.. for example.
style.css (line 927)
[css]
input.button, button.button {
border: 0 none;
}
style.css (line 865)
[css]
.button {
background: url("images/arrowBtn.png") no-repeat scroll 9px 9px transparent;
color: #F9F9F9;
display: inline-block;
font-size: 11px;
line-height: 12px;
padding: 5px 10px 6px 24px;
text-decoration: none;
}
If you disable those rules, then you'll see that your buttons appear
screenshot: http://bit.ly/SqpW1F
You can either remove those styles from your stylesheet, or create more specific rules for your Gravity Forms buttons. You could re-declare the rules for the submit and button elements like this example.. then style them to your preference.
[css]
body .gform_wrapper form .gform_footer input[type=submit].button,
body .gform_wrapper form .gform_footer button {
color: #790000;
border: 2px solid #000
}
Good luck.
Posted 12 years ago on Tuesday November 6, 2012 |
Permalink