See my form here: http://www.agilebts.com/zoho-crm-test/
The 10px padding I have in from the background image is not working in IE and Firefox. It does work however in Chrome and Safari. Here is my code:
body .gform_wrapper form .gform_body ul,
body .gform_wrapper form .gform_body ul li {
list-style-type: none !important;
list-style-image: none !important;
list-style: none !important;
background-image: none !important;
background: none !important;
padding: 0 !important;
margin: 0 !important;
border: none !important
}
body .gform_wrapper form {
background: url('http://www.agilebts.com/wp-content/uploads/2013/01/Green-Form.png');
');
padding: 10px;
border:0px solid #cccccc;
border-radius: 10px;
box-shadow: 3px 3px 5px 1px rgba(100, 100, 100, .7);
}
/* make the form container relative for positioning */
body .gform_wrapper {
position: relative;
}
/* resize and position the form footer with the button */
body .gform_wrapper .gform_footer {
width: auto;
position: relative;
top: 15px;
left: 0px;
padding: 0;
margin: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield label {color: #FFFFFF}
Paul