Container
example: post body container (div) – applies to all forms
1 | body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_post_content { border : 1px solid red ;} |
example: post body container (div) – applies just to form ID #1
1 | body .gform_wrapper_ 1 .gform_body .gform_fields .gfield .ginput_container_post_content { border : 1px solid red ;} |
example: post title container (div) – applies just to specific container (based on the unique parent element ID – replace “XX_X” with your actual element ID)
1 | body .gform_wrapper_ 1 .gform_body .gform_fields #field_XX_X.gfield .ginput_container_post_content { border : 1px solid red ;} |
Input
example: post body input (input) – applies to all forms
1 | body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_post_content input { border : 1px solid red ;} |
example: post body input (input) – applies just to form ID #1
1 | body .gform_wrapper_ 1 .gform_body .gform_fields .gfield .ginput_container_post_content input { border : 1px solid red ;} |
example: post body input (input) – applies just to specific container (based on the unique parent element ID – replace “XX_X” with your actual element ID)
1 | body .gform_wrapper_ 1 .gform_body .gform_fields #field_XX_X.gfield .ginput_container_post_content input { border : 1px solid red ;} |