It seems like and the font is not showing up live at the proper size, I tried testing it at 5px and it still shows at 12-14 I believe. It wont update

  • BBC2016
    Asked on March 8, 2016 at 9:10 AM
    It seems like and the font is not showing up live at the proper size, I tried testing it at 5px and it still shows at 12-14 I believe. It wont update to the proper size I need.
  • Charlie
    Replied on March 8, 2016 at 9:34 AM

    One of your CSS code might be conflicting with that font size should actually be used.

    In the Form Designer Tool, you can easily set specific font sizes in your form.

    You'll see under the "Font Options" section, you can set the font family and the font size there.

    It seems like and the font is not showing up live at the proper size, I tried testing it at 5px and it still shows at 12 14 I believe Screenshot 20

     

    If you are using custom CSS code then there's a possibility of having a style conflict between the changes you made in the Form Designer Tool and your CSS code, you'll need to clean up the code and used "!important". 

    Example:

    In your Form Designer Tool, you set the "Font Options" to "Lucida Grande" and base font-size 14px.

    However... You also have a custom CSS code inserted in your form like this:

    .form-all {

    font-family: "Arial" !important;

    font-size: 32px !important;

    }

     

    Noticed the "!important" on each style on my CSS, that means I am telling to the web browser that the priority style for the form's font will be based from this CSS code.

    Now depending on your requirements, may we know what specific changes you would like to apply?