Changing the label font size

  • apppros13
    Asked on October 11, 2016 at 11:36 AM

    How do I change the size of "Interested in Vendor" on my form? Can I make it larger? 

     

    Meg

  • Jan
    Replied on October 11, 2016 at 12:32 PM

    We can increase the font size of the form label by using this CSS code:

    .form-label {
       font-size: 20px !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. You can change the 20px value to your preferred size.

    Hope that helps. Thank you.