Try this CSS instead:
[css]
#gform_wrapper_1 input[type="submit"] {
background: #8b5d3b!important;
color: #fffimportant;
}
The style was being overridden by line 354 in layout.css.
[css]
.button.green,
input[type="submit"],
.menu-green {
background: #30a146;
background: linear-gradient(top, #30a146 0%, #249334 100%);
background: -moz-linear-gradient(top, #30a146 0%, #249334 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #30a146), color-stop(100%, #249334));
background: -webkit-linear-gradient(top, #30a146 0%, #249334 100%)
}
Posted 12 years ago on Wednesday August 15, 2012 |
Permalink