If you experience problems with form fields and Safari browser – meaning that you can’t type anything inside input or textarea fields – and you are using theme prior 2.0.2, please follow these instructions for a quick fix:


1. open style.css (of parent theme not child theme – very important)

2. find and remove these lines:

 

* {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;	
}

 

3. add these lines:

 

#sectionCampaignTrail * {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

 

4. save and refresh your site in front-end


NOTE: problem is fixed in version 2.0.2