How do I change the font of the text labels ?

  • PreferredGlobal
    Asked on February 27, 2016 at 3:02 PM
    5)  How do I change the font of the text labels ? (e.g. "Price (USD, Accessorials" etc...).
  • jonathan
    Replied on February 27, 2016 at 5:25 PM

    You can use the Form Designer to style the Form.

    For basic styling you can use the Form Desinger Properties.

    ex:

    How do I change the font of the text labels ?  Image 1 Screenshot 30

     

     

    For more advance and custom style using codes, you can use the advance CSS Edtor.

    Example, the cSS code belows makes the labels font-size bigger (24px)

     

    .form-label.form-label-left {

        font-size : 24px;

    }

    How do I change the font of the text labels ?  Image 2 Screenshot 41

     

    Let us know if you need more assistance.