Changing Font Style of Text Boxes

  • jetsetguys
    Asked on October 3, 2015 at 5:22 PM

    How can I change the font type that is used when a user fills out a text box?

    Thanks!

  • Jan
    Replied on October 4, 2015 at 5:15 AM

    Please use this custom CSS code to edit the font type inside the text box.

    .form-textbox, .form-textarea, .form-upload, .form-dropdown, .form-matrix-column-headers, .form-matrix-row-headers, .form-matrix-values {

    font-family: "Amaranth", sans-serif;

    }

    Here's a guide on how to inject custom CSS code in your form

    Thank you.