Anyone savvy with working with @font-face? I'm trying to incorporate it on a
site and can't get it to work right. The problem is storing the font files
on one IP, and linking to it from another IP. I'm not sure if its just not
possible, or if I have the css code incorrect. Here's the original css:

@font-face {
    font-family: 'JuveloRegular';
    src: url('juvelo-webfont.eot');
    src: url('juvelo-webfont.eot?#iefix') format('embedded-opentype'),
         url('juvelo-webfont.woff') format('woff'),
         url('juvelo-webfont.ttf') format('truetype'),
         url('juvelo-webfont.svg#JuveloRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

this works fine when the files are in the same IP. Here's how I modified the
css to link from another site:

@font-face {
    font-family: 'JuveloRegular';
    src: url('http://209.235.208.145/fonts/juvelo-webfont.eot');
    src: url('http://209.235.208.145/fonts/juvelo-webfont.eot?#iefix')
format('embedded-opentype'),
         url('http://209.235.208.145/fonts/juvelo-webfont.woff') format('woff'),
         url('http://209.235.208.145/fonts/juvelo-webfont.ttf')
format('truetype'),
         url('http://209.235.208.145/fonts/juvelo-webfont.svg#JuveloRegular')
format('svg');
    font-weight: normal;
    font-style: normal;

}


Here's the beta site if it helps:

http://associationdatabase.com/aws/SESC/pt/sp/home_page
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to