css - @font-face works on localhost but not online -


i looked answer problem everywere, nothing works...

my font works locally on browsers, when upload website, font works in firefox , ie?

this css:

@font-face {     font-family: 'bebasneueregular';     src: url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.eot');     src: url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.eot?#iefix') format('eot'),          url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.woff') format('woff'),          url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.ttf') format('truetype'),          url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.svg#webfontx0ynjqnl') format('svg');     font-weight: normal;     font-style: normal;  } 

i have used relative urls too, didn't make change. fonts on server.. don't know, whats problem..

the siteurl is: site url blue headers should font...

in css, you're looking font named 'bebasneueregular' (with quotes in name):

font-family: \'bebasneueregular\', sans-serif; 

remove backslashes , it'll work.


Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -