papillonstudios Posted August 31, 2010 Share Posted August 31, 2010 Google Chrome isnt using a font i have set with the CSS3 @font-face attribute. the font works in Firefox, Safari, Opera and OMG even IE. I have updated Chrome tot he latest stable release and still nothin, i have version 5.0.375.127 whats wrong? Quote Link to comment https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/ Share on other sites More sharing options...
papillonstudios Posted September 1, 2010 Author Share Posted September 1, 2010 does anyone know? Quote Link to comment https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/#findComment-1105954 Share on other sites More sharing options...
Omirion Posted September 1, 2010 Share Posted September 1, 2010 i Think it's still unsupported in chrome. It can be turned on but that's up to the users not the developers Quote Link to comment https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/#findComment-1105994 Share on other sites More sharing options...
papillonstudios Posted September 2, 2010 Author Share Posted September 2, 2010 is there any other way to embed a font other than with @Font-Face? I need a fix ASAP Quote Link to comment https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/#findComment-1106536 Share on other sites More sharing options...
jacko310592 Posted September 2, 2010 Share Posted September 2, 2010 early Chrome browsers didnt support it/the feature was turned off by default... if your Chrome is up-to-date then the following kind of code should work: @font-face { font-family: 'myFont'; src: url("/fonts/myFont.eot"); //IE src: local('myFont'), url('/fonts/myFont.ttf') format('truetype') ; //Chrome, FF etc } ... im currently using a custom font on my site (local), and it works fine with Chrome (tested on Windows and Ubuntu) Quote Link to comment https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/#findComment-1106604 Share on other sites More sharing options...
papillonstudios Posted September 3, 2010 Author Share Posted September 3, 2010 nope its still not workin even replacing my code with your code and putting proper names and file names Quote Link to comment https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/#findComment-1106848 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.