Hi, hmm that's strange because you have this file on your sever: templates/gk_sporter/fonts/BebasNeue/BebasNeue-webfont.eot, BebasNeue-webfont.ttf also BebasNeue-webfont.woff - I've checked.
It looks like server is searching a long string not a code with fonts.
You can try to modify a little
templates/gk_sporter/fonts/BebasNeue/stylesheet.cssFROM
- Code: Select all
@font-face {
font-family: 'BebasNeue';
src: url('BebasNeue-webfont.eot') format('eot'),
url('BebasNeue-webfont.woff') format('woff'),
url('BebasNeue-webfont.ttf') format('truetype'),
url('BebasNeue-webfont.svg#webfontfvFLBU0N') format('svg');
font-weight: normal;
font-style: normal;
}
TO
- Code: Select all
@font-face {
font-family: 'BebasNeue';
src: url('http://www.redstarbelgrade.info/templates/gk_sporter/fonts/BebasNeue/BebasNeue-webfont.eot') format('eot'),
url('http://www.redstarbelgrade.info/templates/gk_sporter/fonts/BebasNeue/BebasNeue-webfont.woff') format('woff'),
url('http://www.redstarbelgrade.info/templates/gk_sporter/fonts/BebasNeue/BebasNeue-webfont.ttf') format('truetype'),
url('http://www.redstarbelgrade.info/templates/gk_sporter/fonts/BebasNeue/BebasNeue-webfont.svg#webfontfvFLBU0N') format('svg');
font-weight: normal;
font-style: normal;
}
Maybe it will help. Check.