Hello @radorp2p
If you want to edit the behavior of a specific field, you can assign a custom class name to it, and then define the class through the “Customize Form Design” attribute in the “Form Settings” tab (https://cff.dwbooster.com/images/documentation/form-settings-tab.png)
The class names are assigned to the fields through their attributes: “Add CSS Layout Keyword”.
So, you can enter the class name my-field
into the field’s settings, and the style definition below through the “Form Settings” tab:
#fbuilder .my-field input,
#fbuilder .my-field select,
#fbuilder .my-field textarea{color: red !important;}
#fbuilder .my-field input:hover,
#fbuilder .my-field select:hover,
#fbuilder .my-field textarea:hover{background-color: white !important;}
But using the colors you prefer.
Best regards.