Hi There,
We require some cross-browser debugging.
We are using Mac.
Firefox and Opera, the contact form works fine.
Chrome and Safari, does not work correctly, unable to click the form to enter info.
This form needs to work on IE and other browsers on PC.
URL in screenshot attached.
Many Thanks
Martin Pham answers:
Please try this
open style.css on line 10
replace
* {
padding:0;
margin:0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
to
* {
padding:0;
margin:0;
}
Martin Pham comments:
if you dont want client select content. You can use
* {
padding:0;
margin:0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.gform_body .medium {
-webkit-touch-callout: auto;
-webkit-user-select: auto;
-khtml-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
}