How do I change the font size for the calculation wizard only.?

  • CSCForm
    Asked on November 14, 2019 at 2:01 AM

    How do I change the font size for the calculation wizard only. I want to make the calculation font larger the rest of the form font?

    Thanks,

  • roneet
    Replied on November 14, 2019 at 5:14 AM

    I have injected this CSS in both the Forms in your account that made the font larger:


    #label_23 {
    font-size: larger;
    }

    #input_23 {
     font-size: larger;
    }

    To inject custom CSS please follow this guide:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Let us know if this works.

    Thanks

  • CSCForm
    Replied on November 14, 2019 at 8:33 AM

    Thank you for helping, This is much better.

    Is there a way to actually control the size of the font with a numerical value rather than just entering "larger" into the CSS code?

  • roneet
    Replied on November 14, 2019 at 8:45 AM

    Yes, you can replace the text "larger" with a value like "20px". You can adjust the value based on your needs.

    Thanks.

  • CSCForm
    Replied on November 14, 2019 at 8:54 AM

    That works perfectly, Thank You.