Changing the default font

Forums General discussion Changing the default font

Tagged: 

Viewing 2 reply threads
  • Author
    Posts
    • #23104
      Troy Lanigan
      Participant

      Is there a way to change the font… I found this bit of coding in the DFFS_backend.css document, but I don’t want to destroy something by modifying it.. (I’m new to all this)

      */
      body{
      overflow:hidden!important;
      font-family: Segoe UI WestEuropean,Segoe UI,-apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,sans-serif;

      I would love to use connections as my font (if possible) the Segoe makes my lowercase i look like lowercase l and while it’s minor… it’s something i know I’m going to have people comment about.

      thanks in advance!

    • #23147
      Alexander Bautz
      Keymaster

      Hi,
      You can change the font in the DFFS configuration screen by changing this font in the CSS file, and you can change the font in the forms by adding Custom CSS like the below example. I don’t think the connections font is available by default, but if you can load it somehow you can use it in the same way as the below example – it uses the Google font “Leckerli One” and must be loaded in the textarea above the Custom CSS by adding this URL:

      https://fonts.googleapis.com/css?family=Leckerli One
      body *{
          font-family:"Leckerli One"!important;
      }

      You find other Google fonts here: https://fonts.google.com/

      Alexander

    • #23177
      Troy Lanigan
      Participant

      Thanks! this worked!

Viewing 2 reply threads
  • You must be logged in to reply to this topic.