Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I hope you'll take some time and help me out with this issue. I'm trying to integrate this font in wordpress theme. And it works just fine FF, Chrome and IE. But I have problem with Opera. The strangest thing is that it loads but looks like file format is broken. I know it loads because while page loads font converts from serif to sans-serif.

I used fontsquirrel and few other converters to create a kit but seems none of them works properly.

@font-face {
    font-family: 'Blanch-Caps';
    src: url('<?php bloginfo('stylesheet_directory'); ?>/font/blanchcaps/blanch_caps.eot');
    src: url('<?php bloginfo('stylesheet_directory'); ?>/font/blanchcaps/blanch_caps.eot?#iefix') format('embedded-opentype'),
         url('<?php bloginfo('stylesheet_directory'); ?>/font/blanchcaps/blanch_caps.woff') format('woff'),
         url('<?php bloginfo('stylesheet_directory'); ?>/font/blanchcaps/blanch_caps.ttf') format('truetype'),
         url('<?php bloginfo('stylesheet_directory'); ?>/font/blanchcaps/blanch_caps.svg#blanch_caps') format('svg');
    font-weight: normal;
    font-style: normal;
}

.title h3 {
    font-family: 'Blanch-Caps';
    text-transform: lowercase;
}

Once again it works just fine in every other browser except Opera. I'm using lowercase transform since Blanch doesn't support caps.

I would appreciate any sort of help.

Thanks.

share|improve this question
can you show your code? are you using optimizeLegibility in your css? other questions i have could be easily answered with a code source – albert Apr 21 '12 at 1:06
+1 - it would be easier to understand this problem with a link.. – hallvors Jul 24 '12 at 3:52

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.

Browse other questions tagged or ask your own question.