Removing asterisks from required fields

Some companies do not want fields to be highlighted with the usual asterisk. The following example CSS file achieves this; however, this is a standard with which most customers are familiar and expect. If a field is required, it is best practice to indicate that as such. In the case that a customer submits the survey without completing all required fields, an error indicates which fields require values before submitting the survey.

The following example form and CSS file requires adding 'NoAster' in the Custom CSS Class field:

Example form showing 'NoAster" in the Custom CSS Class field.

.NoAster .fa-asterisk:before {
  content: '' !important;
}