It's not working because you have improperly formatted CSS.. here's what you have..
[css]
.button {
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
color: red
}
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {
font-size: 26px;
color: green
}
Notice that the .button class rule is not properly closed with a bracket. That's causing the following rules to fail as well.
As far as the other issue, please start a new topic for that and we'll address it there.
Posted 12 years ago on Wednesday March 7, 2012 |
Permalink