I’m not experiencing any problems with Jazzy Forms and WordPress 3.8.1. Can you point us to a live site? What theme are you using?
Thanks for the quick reply.
I use http://www.elegantthemes.com/gallery/ theme: DIVI
The live site is here:
http://www.raphaeldudler.ch/gastfreundschaft-kaufkraft/
It does not display checkboxes.
Before the update everything worked fine. Now I do not know which update here makes problems. Either WP or the template or even Jazzy. Unfortunately I do all updates automatically executed simultaneously.
Thank you.
Hi.
Checkboxes are there but your theme makes them invisible on some browsers (webkit-based ones like Chrome and Safari).
The following line in your theme eliminates these browsers’ standard rendering rules for input elements, without specifying any alternative for checkboxes and radio buttons.
input { -webkit-appearance: none; }
This is a design/CSS problem that’s specific to your site/theme. My suggestion would be to contact your theme developer or contact Jazzy Forms professional support.
Hi again
The theme developer has solved the problem. I had to embed the following code to the CSS:
input[type=”checkbox”] { -webkit-appearance: checkbox!important; }
input[type=”radio”] { -webkit-appearance: radio!important; }
Now everything works fine. Thank you for your advice.
Greeting