I originally loaded my fonts from google, but then decided to host them locally and still no luck. Here is what my CSS looks like for my fonts
@font-face {
font-family: 'open_sans_condensedbold';
src: url('/campfiles/c9/fonts/opensans-condbold-webfont.eot');
src: url('/campfiles/c9/fonts/opensans-condbold-webfont.eot?#iefix') format('embedded-opentype'),
url('/campfiles/c9/fonts/opensans-condbold-webfont.svg#open_sans_condensedbold') format('svg'),
url('/campfiles/c9/fonts/opensans-condbold-webfont.woff') format('woff'),
url('/campfiles/c9/fonts/opensans-condbold-webfont.ttf') format('truetype'),
url('/campfiles/c9/fonts/opensans-condbold-webfont.svg#open_sans_condensedbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'materegular';
src: url('/campfiles/c9/fonts/mate-regular-webfont.eot');
src: url('/campfiles/c9/fonts/mate-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('/campfiles/c9/fonts/mate-regular-webfont.woff') format('woff'),
url('/campfiles/c9/fonts/mate-regular-webfont.ttf') format('truetype'),
url('/campfiles/c9/fonts/mate-regular-webfont.svg#materegular') format('svg');
font-weight: normal;
font-style: normal;
}
When I load my page the text does not appear at all. Though strangely if I right click ->inspect element the text appears. Very bizarre. I read that its a chrome issue that was fixed in Chrome v.33 but I am up to date. Any help would be much appreciate thanks.