Hello @mpmarinov
You need to integrate external libraries with the form. It applies to the DropDown fields.
Please, insert an “HTML Content” field in the form with the following piece of code as its content:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.7/chosen.min.css" integrity="sha256-EH/CzgoJbNED+gZgymswsIOrM9XhIbdSJ6Hwro09WE4=" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.7/chosen.jquery.min.js"></script>
<script>
jQuery(window).on('load', function(){
jQuery('.cff-dropdown-field select').chosen();
});
</script>
And that’s all.
Best regards.