How do I just change the background color of the entire form?
How do I just change the background color of the entire form?
You would add custom CSS to your themes stylesheet to target and style the form wrapper class.
Here is documentation on how to target and style form elements. This will link right to the area discussing how to style the form wrapper class (gform_wrapper):
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples#Form_Wrapper
Thanks I added the following to the custom CSS and it did what I was looking for to all the forms on the site.
[css]
body .gform_wrapper { color:#323232 }
body .gform_wrapper { background:#e1e1e1}