I'm having trouble using media queries and web fonts on my iphone 6 plus
I'm in the process of working off creating a website which is in responsive (RWD) design. However, when I try to load a font with the following media query everything appears fine and the page (which at this point is only a one column grid) images and video shrink to fit the smaller screen of my iPhone 6Plus.
Unfortunately, the @11220649-face is not working on the iPhone (I haven't tried it on my tablet yet).
Here is my .css code for the smart phone media query..
@media screen and (max-width: 580px;){
ul li {float: none;}
@11220649-face {
font-family: "Racer";
url('../fonts/racer.woff#Racer') format('woff');
}
}
Like I said the responsive design of the site works fine on the desktop and the correct ("Racer") font appears however the iPhone is not displaying the "Racer" font and instead display a default font... Which is not the desired effect.
Any ideas?
Thanks!
