Is it possible to choose our own font?

  • getstarteduk
    Asked on August 14, 2017 at 8:48 AM

    Hi

     

    We currently use a font called Cataraman on our website. Is it possible to use this font on our form?

     

    Many thanks

  • aubreybourke
    Replied on August 14, 2017 at 9:26 AM

    Yes its possible. You need the URL of the font on your website.

    Then add custom CSS like this:

    @font-face {    
    font-family: myFirstFont;    
    src: url(http://www.yoursite.com/fonts/coolfont_bold.woff);    
    font-weight: bold; }
    .form-all *{ font-family: 'myFirstFont', sans-serif;}


    Instructions are here:
    How to Inject Custom CSS Codes

  • getstarteduk
    Replied on August 14, 2017 at 9:43 AM

    Hi. Great thanks.

    I have just tried this but i'm not sure how to find the correct URL for the font on my site?

    Our site is www.getstarteduk.com

    Font is Cataraman

     

    Thanks

  • aubreybourke
    Replied on August 14, 2017 at 10:26 AM

    Looks like its a Google font:

    http://fonts.googleapis.com/css?family=Catamaran

     

    So this requires a different approach:

    @import url(http://fonts.googleapis.com/css?family=Catamaran);

    .form-all{

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

    }

     

    Instructions are here:

    How to Use Google Fonts in your Form