Skip to content

Instantly share code, notes, and snippets.

@jasperf
Created December 19, 2015 12:09
Show Gist options
  • Select an option

  • Save jasperf/b7d57b06abe7c7748d42 to your computer and use it in GitHub Desktop.

Select an option

Save jasperf/b7d57b06abe7c7748d42 to your computer and use it in GitHub Desktop.
Make a two column Gravity Forms Form Responsive #wordpress #responsive # gravityforms
@media only screen and (min-width: 200px) and (max-width: 768px) {
.gform_wrapper .gform_body .top_label li.gfield.gf_right_half {
float: left;
clear: left !important;
width: 99%;
}
.gform_wrapper .gform_body .top_label li.gfield.gf_left_half {
float: left;
clear: left !important;
width: 99%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment