I am working on this form at a temporary spot:
http://www.larabbits.org/test/volunteer/volunteer-application/
I was told by Kevin Flahaut that in order to adjust contact info field sizes (smaller) I would need to "target the field using CSS inheritance based on it's parent containers."
I looked at this page
http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/
but I can't make heads or tails of what I am supposed to do. Since I've already applied the below code into my theme's CSS file, to move the fields further left, is this something I can just add to the below? Sorry - I'm not the best with coding but I do the best I can!
/* gravityforms adjusting contact info area */
body .gform_wrapper .left_label li#field_1_1 .gfield_label,
body .gform_wrapper .right_label li#field_1_1 .gfield_label,
body .gform_wrapper .left_label li#field_1_2 .gfield_label,
body .gform_wrapper .right_label li#field_1_2 .gfield_label,
body .gform_wrapper .left_label li#field_1_3 .gfield_label,
body .gform_wrapper .right_label li#field_1_3 .gfield_label,
body .gform_wrapper .left_label li#field_1_4 .gfield_label,
body .gform_wrapper .right_label li#field_1_4 .gfield_label,
body .gform_wrapper .left_label li#field_1_5 .gfield_label,
body .gform_wrapper .right_label li#field_1_5 .gfield_label,
body .gform_wrapper .left_label li#field_1_6 .gfield_label,
body .gform_wrapper .right_label li#field_1_6 .gfield_label
{width:10%
}