Hello @ohtusabes
Yes, of course, that’s possible. The plugin includes the “Customize Form Design” attribute in the “Form Settings” tab (https://resources.developers4web.com/cff/images/documentation/form-settings-tab.png). It is a CSS editor with syntax highlighting and error detection. This attribute allows you to customize the form’s appearance.
For example, if you want to modify the background and text colors in the calculated fields, you can enter a CSS block similar to:
#fbuilder .cff-calculated-field input{
color: white !important;
background: red !important;
}
Learn more about the form and fields components and how to customize their appearance by reading the following blog post:
https://cff.dwbooster.com/blog/2020/01/12/form-design
Best regards.