Add this to your style.css file (from the dashboard, click Appearance, Editor)
#form_name{
background: #F7F7F7;
}
Then, on the dashboard click Contact and select the form in question. When the form loads, surround the form code with <div id = "form_name">
and </div>
. Note that you can change “form_name” to whatever you want, BUT what you use in the stylesheet MUST be the same as what you use in the <div>
tag that surrounds the form code.
You can change the #F7F7F7
hex code to whatever form background color you want. If that scares you, take a look at this <https://www.rapidtables.com/web/color/RGB_Color.htm>
. Mouse over the color you like and the hex code is automatically displayed.
Good luck.