Hi @sbeat
Have you modified the form on the affected page?
It looks like you only have some Checkboxes and some text fields but no dropdown fields.
Let me know if I’m missing something!
Thread Starter
sbeat
(@sbeat)
Yes I went ahead and changed to checkboxes since the drop down wasn’t working correctly.
Hi @sbeat
Would you mind creating a test page on your site and embedding a copy of the form with the dropdown issue so that we can chase this down further?
Thank you! 🙂
Thread Starter
sbeat
(@sbeat)
Hi @sbeat
Thanks for sharing the link.
It looks like this issue might be a result of some styling conflicts with your theme which is adding another select element below the one added by WPForms.
The good news is that you can fix this with a CSS snippet that I’ve shared below:
/* christinebsells.com */
.nice-select{
display:none!important;
}
#wpforms-517640-field_8{
display:block!important;
}
And in case it helps, here’s a tutorial on how to add custom CSS like this to your site.
Hope this helps!