Neep Help Updating Font Family CSS for Brave Browser

  • Battlesword
    Asked on February 1, 2023 at 1:16 PM

    Hello! I'm was successfully able to update the form font to 'GT Walsheim Pro' for Chrome, however in Brave browser it looked like it was reverting to 'Times' or another font. Wondering if you can explain why this is happening or have a fix for this?


    This is the code that was working in Chrome but not Brave. I know brave supports this font because the rest of our website has this font and it's working:


    .form-label-top {

        width: 100% !important;

        font-family: 'GT Walsheim Pro' !important;

        font-weight: 800 !important;

    }



  • Mightor JotForm Support
    Replied on February 1, 2023 at 2:29 PM

    Hi Battlesword, 

    Thanks for reaching out to Jotform Support. Is the form embedded on your website? If so, try to inject your custom CSS code to your form then embed the form using its iFrame embed code. This guide will show you how to do that. If that doesn't work, let us know the page its embedded on as well as the forms URL so we can check it.

    Let us know if you have any other questions.


  • Battlesword
    Replied on February 1, 2023 at 5:47 PM

    Yes I have injected my cutom CSS code as directed and embeded the iFrame on my site here: https://iar.life/contact-test

    1675291491 63daeb63d8766  Screenshot 10


    The Label headings look perfect in Chrome:

    1675291579 63daebbb3766f  Screenshot 21

    But not in the Brave browser.

    1675291541 63daeb951aecf  Screenshot 32


    Forms URL is: https://form.jotform.com/230305968241151


    Thanks for looking into it!

  • Mightor JotForm Support
    Replied on February 1, 2023 at 8:08 PM

    Hi Battlesword, 

    Thanks for getting back to us. I’ll need a bit of time to look into this. I’ll get back to you as soon as I can.

    Let us know if you need any more help.


  • Mightor JotForm Support
    Replied on February 1, 2023 at 10:16 PM

    Hi Battlesword, 

    Thanks for your patience, we appreciate it. When I checked, I found that since you're using a custom font, you'll need to host the custom font in your own server then inject a custom CSS code like the below to your form:

    @font-face {
    font-family: 'MyWebFont';
    src: url('https://example.com/webfont.woff') format('woff'),
    url('https://example.com/webfont.ttf') format('truetype');
    }
    * {
    font-family: 'MyWebFont', sans-serif;
    }

    Let us know if you need any more help.


  • Battlesword
    Replied on February 1, 2023 at 10:53 PM

    Thank you for the help! I'll look into implementing this.

  • Mightor JotForm Support
    Replied on February 2, 2023 at 8:39 PM

    Hi Battlesword, 

    I checked this again and found that the server where the fonts are hosted is blocked by CORS. You can try to host your files somewhere else or look for online sources that hosts the custom font.

    Let us know if you need any more help.