Giter VIP home page Giter VIP logo

Comments (7)

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024
[deleted comment]

from googlefontdirectory.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024
I'm having the same issue with the Lato font in IE. It's rendering in other 
browser fine, even Chrome. I've attached images of how it's rendering in IE vs 
Firefox

Original comment by [email protected] on 17 May 2011 at 11:01

  • Added labels: ****
  • Removed labels: ****

Attachments:

from googlefontdirectory.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024
I am seeing the same results.  I have stopped using Google fonts for any 
production work.

Original comment by [email protected] on 18 May 2011 at 12:42

  • Added labels: ****
  • Removed labels: ****

from googlefontdirectory.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024
I used the workaround described in Issue 9 -- calling the different font 
variants separately in an IE-only style sheet -- and Lato is working fine for 
me in all major browsers now.

http://code.google.com/p/googlefontdirectory/issues/detail?id=9&can=1&q=italic


Original comment by [email protected] on 18 May 2011 at 3:54

  • Added labels: ****
  • Removed labels: ****

from googlefontdirectory.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024
Lato doesn’t even work on the Google Web Fonts site in Chrome. 

It actually crashes the page most of the time. Especially if you click "View 
all styles."

Would love to see this fixed. 

Original comment by [email protected] on 24 Aug 2011 at 8:51

  • Added labels: ****
  • Removed labels: ****

Attachments:

from googlefontdirectory.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024
The behavior that I see is closer to what is described in comment #2. Lato 
appears as a sans-serif font in chrome and firefox, but the rendering is "off" 
in chrome. I've included sample text for reference.

Original comment by [email protected] on 13 Feb 2013 at 4:16

  • Added labels: ****
  • Removed labels: ****

Attachments:

from googlefontdirectory.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 26, 2024


/*******************************************************************************
*********************

BAD

    This is what the Google Webfont directory gives us. WOFF!  Looks bad on Chrome.
    No antialiasing.. :p  

****/


@font-face {
  font-family: 'Droid Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Droid Sans'), local('DroidSans'), 
       url(http://themes.googleusercontent.com/bla/bla.woff) format('woff');
}




/*******************************************************************************
*********************

GOOD

    This is what it should be. 
    Problems are that the fonts are hosted on the server.. no cdn.. makes sad panda's.

    I downloaded the Fontsquirrel Droidsans webfont kit. Uploaded it to my server. And change the 
    CSS file so it looks exact like this: 

****/



@font-face {
   font-family: 'DroidSansRegular';
   src: url('DroidSans-webfont.eot');
   src: url('DroidSans-webfont.svg#DroidSansRegular') format('svg'), <------ MOVED SVG ON TOP
        url('DroidSans-webfont.eot?#iefix') format('embedded-opentype'),
        url('DroidSans-webfont.woff') format('woff'), <-- PLACED THE WOFF, WHERE THE SVG WAS
        url('DroidSans-webfont.ttf') format('truetype')
   font-weight: normal;
   font-style: normal;

}

@font-face {
   font-family: 'DroidSansBold';
   src: url('DroidSans-Bold-webfont.eot');
   src: url('DroidSans-Bold-webfont.svg#DroidSansBold') format('svg'),
        url('DroidSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
        url('DroidSans-Bold-webfont.woff') format('woff'),
        url('DroidSans-Bold-webfont.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
}


Original comment by xandersmalbil on 22 Jul 2013 at 7:00

  • Added labels: ****
  • Removed labels: ****

from googlefontdirectory.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.