1
0
-1

I want to customize the font face and sizes beyond the built in controls. How do I do this?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Go to Website > Custom CSS and add the following:

      body, td, .standardText, p {
      font-family: 'Ubuntu', sans-serif;
      font-weight: 400;
      font-size: 1em;
      line-height: 1.95em;
      }

      Be sure to also add any google fonts referenced to you website by following these instructions: How do I add a Google Font to my Website?

        CommentAdd your comment...