Hi,
My button's color is green when I want it to be brown. I tried adding the following code:
#gform_submit_button_1 {
background-color: #8b5d3b!important;
color: #fff !important;
}
but it's being overwritten by another style. Any ideas?
Thanks!
Hi,
My button's color is green when I want it to be brown. I tried adding the following code:
#gform_submit_button_1 {
background-color: #8b5d3b!important;
color: #fff !important;
}
but it's being overwritten by another style. Any ideas?
Thanks!
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%)
}Perfect. Thanks, Chris!