I have a little problem that I just cant solve. I have a css-file that imports another css-file which contains a font. Now this imported css-file has a list of these e.g:
src: url(my-font.eot)
When I publish the site, it does not find the font files. I have tried all sorts of paths such as:
src: url(../Content/css/<filenamehere>.eot
src: url(../css/<filenamehere>.eot
I know the font-css is in the server and import from the main.css works because there are two files that are imported and the other one works fine.
EDIT: My Imports look like this:
@import url('../css/stuff1/stuff1.css');
@import url('../css/stuff2/stuff2.css');
/EDIT
What paths should I give to these font files in the font-css?
@imports look like?