Hi guys
I cannot seem to get my FontFace font working in my site. Here is the relevant part of my CSS, it just keeps defaulting to the font after my fontface font (Arial):
body { background:#181818; margin-top:10px; margin-bottom:10px; font-family: CabinRegular, Arial, sans-serif; }
* { margin: 0; padding: 0; outline: 0; }
a { color: #39a7dc; text-decoration: none; }
a:hover { cursor: pointer; text-decoration: none; color:#A1D800; }
a img { border: 0; }
ol,ul { list-style:none; }
h1 { color: #39a7dc; }
h3 { color: #39a7dc; }
#flashvideo { z-index:-1 !important;}
@font-face {
font-family: 'CabinRegular';
src: url('fonts/Cabin-Regular-webfont.eot');
src: url('fonts/Cabin-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/Cabin-Regular-webfont.woff') format('woff'),
url('fonts/Cabin-Regular-webfont.ttf') format('truetype'),
url('fonts/Cabin-Regular-webfont.svg#CabinRegular') format('svg');
font-weight: normal;
font-style: normal;
}
I have stored my fonts folder withing my theme directory e.g. /my theme/fonts. Any ideas?
cheers
Martin