http://sensiblestrategy.com/nonsense (a Premise landing Page)
and http://sensiblestrategy.com/stuff-n-nonsense/ a regular page in the Education theme.
I have removed the tangle of custom css and tried to set something up that looked like it would be 'universal' for all forms. Than add the code that would separate forms that I found on another threads
[css]
/*-- Enter your custom CSS below --*/
body .gform_wrapper {
width:450px;
margin:0 auto;
font-family: arial!important; font-size: 20px; color: white; margin: 10px;
}
/*-- Form ID 1 Specific Styles ---------------------------------------------*/
body .gform_wrapper {background: coral; padding:20px}
body .gform_wrapper {border: 5px solid darkolivegreen}
/*-- Form ID 5 Specific Styles ---------------------------------------------*/
body .gform_wrapper {background: steelblue; padding:20px;}
body .gform_wrapper (border: 5px solid red}
Some of the code will overcome the other, but any changes affect both forms instead of being style specific. Adding the "_1" or "_4" after wrapper, etc. will remove all background colors. I got this idea from http://pastie.org/1081799 in another thread. Thank you for the help and encouragement.