I\'m having an issue with webfonts only in Firefox, all other browsers (including IE) work perfectly.
My issues is that the webfonts won\'t load at all.
I\'v
After scouring stackoverflow trying every suggestion and not having them work I found out what was wrong with my code that after fixing, made it work. I had left out the commas between font declarations.
I had
font-family: "GiveMeTime" sans-serif;
instead of
font-family: "GiveMeTime", sans-serif;
and as it worked in every other browser I didn't notice the error. Anyone else with this problem, check it's not a simple font stack error!