Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #367087

    I am wondering how I could use the font named PT Sans which is available for a heading font in the body/throughout my site?

    #367409

    Hey tdproperty!

    If your not already using it in your theme options then add this to your custom CSS.

    @font-face {
      font-family: 'PT Sans';
      font-style: normal;
      font-weight: 400;
      src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v8/LKf8nhXsWg5ybwEGXk8UBQ.woff) format('woff');
    }

    And then add this as well if you want to change the paragraphs.

    p { font-family: 'PT Sans' !important; }
    

    If your trying to change a specific element then let us know which one and we’ll give you the CSS required.

    Cheers!
    Elliott

    #378070

    Awesome that worked great thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Use heading font "PT Sans" as a body text font’ is closed to new replies.