Theme conflict with Gravity Forms on mobile

Greetings, and thank you for a great set of themes. I use several of them.

On Dazzling, however, I am experiencing a conflict with Gravity Forms, but only on mobile. On mobile devices, the form doesn’t work. I cannot enter characters into any form fields, select radio buttons, click ‘submit’, etc.

The form works on mobile with the WP-2015 theme as well as in Gravity Forms’ preview.

Example: http://www.pancretanpef.org/contact-us/

Dazzling Version: 1.5.1
Wordpress Version 4.2.2
Android 4.4.2 (tablet)
Android 5.0.1 (Galaxy Note 4)

Hi,

You can fix this by adding this simple CSS to Appearance >> Theme Options >> Other >> Custom CSS or inside your Child Theme style.css as you are using it already. Both options should works just fine.

@media (max-width: 768px) {
  .pull-left {
    float: none !important;
  }
}

Let me know if this helps.

That seems to have solved the problem. Thank you!