How do I set the Arial label?

  • Dan Racimo
    Asked on May 7, 2020 at 10:28 PM

    Hi, in relation to ADA compliance, is there a way to set Arial Labels within the form tags?

    Thank you so much

  • roneet
    Replied on May 7, 2020 at 10:55 PM

    To change the font of your form, please add this custom CSS code to your form:

    .form-all {

        font-family : Arial, Helvetica, sans-serif!important;

    }

    .form-header {

        font-family : Arial, Helvetica, sans-serif !important;

    }

    .form-subHeader {

        font-family : Arial, Helvetica, sans-serif !important;

    }

    .form-label.form-label-top {

        font-family : Arial, Helvetica, sans-serif !important;

    }

    .form-checkbox-item label {

        font-family : Arial, Helvetica, sans-serif !important;

    }

    .form-submit-button {

        font-family : Arial, Helvetica, sans-serif !important;

    }

    Here's a guide on: How-to-Inject-Custom-CSS-Codes

    If you have any questions, please feel free to contact us.

    Thank you.