Jump to content

Recommended Posts

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?

Link to comment
https://forums.phpfreaks.com/topic/212151-google-chrome-and-font-face/
Share on other sites

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)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.