05/02/2019 at 9:15 am
#491099
Keymaster
@ Diana
The CSS styling conflict is from the theme. We’ll have to revert some of it globally assigned styles to fix the display in Form. Add the following to the theme’s custom CSS area, generally found in the Theme Customizer.
#cn-form input,
#cn-form select,
#cn-form textarea {
display: initial;
width: auto;
}
#cn-form select {
-webkit-appearance: menulist;
background: none;
font-size: unset;
height: auto;
}
#cn-form input[type=radio],
#cn-form input input[type=checkbox] {
bottom: auto;
}
Hope this helps! Let me know.