@robjr
This works fine in my test using Firebug.
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
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=password],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {color:#red; font-size:20px}
screenshot: http://grab.by/9v3M
The problem is that your stylesheet isn't being rendered by the browser completely.. it appears that a syntax error is preventing all of the rules from being applied.
validation results: http://j.mp/g60seC
Check out this section at the end of your custom.css
/* Styling for Workshops Master Page Listing*/
.galleriesThumb2 {
margin: 30px 50px 50px 0px;
.sideBySide, .sideBySide div {
text-align: left;
letter-spacing:0em;
}
Notice that the ".galleriesThumb2" rule is not closed out properly before declaring the "sideBySide" rules. That's breaking everything in the CSS after that, your form rules included. Add a nice curly bracket after that rule and you should be in business.
Posted 13 years ago on Wednesday March 16, 2011 |
Permalink