Custom Field Labels and Inputs

Customize the field labels and field inputs using custom CSS classes.

You can customize the field labels and field inputs using custom CSS classes via the Extended options. The extended options available for field label and field input values are labelCssClass and fieldCssClass. The usage of these options are shown below:

{ 
labelCssClass: 'custom-label-class', 
fieldCssClass: 'custom-field-class' 
} 

The following sample CSS shows the class implementation for the option classes defined above:

.custom-label-class 
{ 
font-weight: bold; 
} 
.custom-label-class > div > span 
{ 
color: red; 
font-size: 15pt; 
} 

.custom-field-class, 
.custom-field-class input, 
.custom-field-class textarea 
{ 
font-weight: bold; 
color: blue !important; 
font-size: 15pt; 
}