Hello everyone,

can someone please help me changing the fonts to our custom font in "Protean"?

Do I upload the font files somewhere and then change the name here in the image or how is it exactly done?

The goal is to have "Karla" google font.

I wish the UNA documentation was as good as the idea behind it!!!

  • 404
Comments
    • Hey 😁

      I don't use protean, but it is the same no matter. If the font will be self hosted, upload to storage area. Then copy the URL it produces.

      Next, in style section add...

      @font-face {
       font-family: "myFont";
       src: url('/s/sys_files/font.ttf');
      }
      

      So, the family name can be whatever you want to name it. The SRC URL should start with the above, replacing font.ttf with the system generated file name. Don't put the https in front, no need.

      Next, goto that line in protean and add your font.

      "myFont", "Helvetica Neue", sans-serif
      

      Bingo. 😁👍

    Login or Join to comment.