I'm having issues with my @font-face code in my style.css file for a theme. I've already tested the theme as an HTML site, and the paths are the same. The style.css file uses a relative path to a fonts folder like so:
`@font-face{
font-family:'Fertigo_PRO-webfont';
src:url('./fonts/Fertigo_PRO-webfont.eot');
src:url('./fonts/Fertigo_PRO-webfont.eot?iefix') format('eot'),
url('./fonts/Fertigo_PRO-webfont.woff') format('woff'),
url('./fonts/Fertigo_PRO-webfont.ttf') format('truetype'),
url('./fonts/Fertigo_PRO-webfont.svg#webfont') format('svg');
}
And I call it in the stylesheet for an id:
#masthead{
background-image:url('mastgrad.png');
background-repeat: repeat-x;
height: 250px;
width:100%;
padding:20px 0 0 0;
margin:0;
}
The font isn't displaying where it's supposed to, even though I never had an issue with this before I put this on my LAMPP server for development. It seems to replicate in Firefox and Chrome, though I haven't tested it elsewhere.