Use special fonts

  • Unknown's avatar

    I would like to use a font I’ve paid from webtype.com on my wordpress blog. I don’t own the blog so I can’t change anything in the main php files as function.php. So, the only solution I’ve found is to add this content in the css customization file :

    @font-face {
         font-family: "Scout Normal";
         src: url("http://the/url/of/the/file") format("woff");
         font-style: normal;
         font-weight: normal;
    }
    .block p {
         font-family: "Scout Normal";
    }

    he problem is that everytime i save the file, WordPress remove the url in the loading of the font, that means

    src: url("http://the/url/of/the/file") format("woff");
    become
    src: format("woff");
    Do you have any ideas to force the loading of the font, or an other idea to load it ? Thank you for your help.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    That’s not possible. You can only use Typekit fonts just like the support docs state. http://en.support.wordpress.com/custom-design/custom-fonts/

  • The topic ‘Use special fonts’ is closed to new replies.