Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to develop a boilerplate for client site development and am looking for the best way to handle Firefox's quirks in regards to @font-face. The solution I have come up with is to create a "font.php" file with the following:

    <style type="text/css" media="screen">
    @font-face {
    font-family:'FontAwesome';
    src:url('<?php get_stylesheet_directory_uri();?>fonts/fontawesome/fontawesome-webfont.eot');
    src:url('<?php get_stylesheet_directory_uri();?>fonts/fontawesomefont/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
        url('<?php get_stylesheet_directory_uri();?>fonts/fontawesomefont/fontawesome-webfont.woff') format('woff'),
        url('<?php get_stylesheet_directory_uri();?>fonts/fontawesomefont/fontawesome-webfont.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
    }
    </style>

I'm then calling this php file within style.css as an @import. This approach works but I'm curious if there is a better way of handling this with WordPress?

share|improve this question
This sounds like a pure CSS question, which is off topic per the faq. Stack Overflow might be a better place to ask the question. – s_ha_dum Jan 24 at 15:23

migrated from wordpress.stackexchange.com Jan 24 at 15:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.