I am trying to use a custom font from my server per instructions but it

  • mogulpro
    Asked on April 13, 2021 at 9:18 PM

    I am trying to use a custom font from my server per instructions but it is not working. Please help!

    Form: https://form.jotform.com/91609048008153

  • Ashwin JotForm Support
    Replied on April 14, 2021 at 12:07 AM

    I did check your form and found that you have imported your font, but you have not applied it to form elements. I would suggest you to please inject the following custom CSS code in your form and see if that solves your probelm:

    @import url('https://seisa.com/wp-content/uploads/2021/04/lineto-brown-light.woff');

    @font-face {
      font-family : myCustomFont;
        src : url(https://seisa.com/wp-content/uploads/2021/04/lineto-brown-light.woff);
      font-weight : 400;
    }
    .form-all *{
      font-family: 'myCustomFont', sans-serif;
    }

    Hope this helps.

    Do get back to us if you have any questions.