Imported Google Font is not being applied to the form

  • AqadSoqad
    Demandé le 24 juillet 2023 à 11:48

    Bonjour,

    J'aimerais utiliser la police Montserrat pour mes formulaires Jotform. Par contre, lorsque je tente de modifier le CSS, cela indique que la police a bel et bien été appliqué au formulaire mais je ne vois pas de différence. Pouvez-vous m'aider?

    Voici le code que j'ai utilisé :

    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&display=swap');


    body {

     font-family: 'Montserrat', sans-serif;

    }

    Merci,

    Rosalie

    Jotform Thread 5356706 Screenshot
  • Billy Jotform Support
    Répondu le 24 juillet 2023 à 21:44

    Hi Rosalie,

    Thank you for reaching out to Jotform Support. The font was imported correctly but the CSS code doesn't override the form's default styling. To make the font work, replace your CSS code with my code below (keep the font import):

    * {
      font-family : 'Montserrat', sans-serif !important;
    }

    Imported Google Font is not being applied to the form Image 1 Screenshot 20

    Reach out again if you need any other help.

  • AqadSoqad
    Répondu le 25 juillet 2023 à 16:03

    Thank you!


    Rosalie