Fluent Forms Global CSS Example
2 Example Forms
Find the CSS Code below these forms
1 Contact Form
2 Newsletter Form
This CSS has been added to the Customizer > Additional CSS
/* FLUENT FORMS Global CSS */
/* FF Label Text */
.ff-el-input--label
{
color: yellow !important;
}
/* FF Field Groups */
.ff-el-group
{
background-color:green !important;
padding: 10px !important;
}
/* FF Fields */
.ff-el-form-control {
color: white !important;
background-color: blueviolet !important;
border-color: black !important;
}
/* FF Fields Placeholder */
.fluentform .ff-el-form-control::placeholder
{
color: white;
}
/* FF Button */
.ff-btn-submit {
border-color: yellow !important;
background-color: red !important;
}