Is there a way to change text to bold, italic, regular, etc. within a form?

  • felician
    Asked on September 30, 2015 at 10:43 AM
  • Charlie
    Replied on September 30, 2015 at 12:41 PM

    Hi,

    If I understand your concern correct, you want to change the font styling of your form? You can do this by using two methods:

    1. First, you can make changes in your form using the options in the Form Designer Tool.

    Is there a way to change text to bold, italic, regular, etc Screenshot 30

     

    2. Another way is using custom CSS code, below is an example CSS code placed under the CSS tab in Form Designer Tool. Here's a reference that you can also use from W3Schools: CSS: Font Styles.

    label {

        font-size: 18px;

        font-style: italic;

    }

    Is there a way to change text to bold, italic, regular, etc Screenshot 41

     

    I hope that helps.