Search code examples
csswebfontsgoogle-webfonts

Squished Text On Website


I am using a google web font on a site and am getting some users reporting very squished unreadable text throughout the entire site. I am unable to see this any browser or computer I use, so I am not sure what could be causing this.

Here is a screenshot of the issue:

enter image description here

Any suggestions to fix this would be great. Thanks!

Here is the url to site: http://odditymall.com


Solution

  • If anyone is having the same issue... From google fonts, I was getting the 'Droid Serif' font, but in my css I was using:

    font-family: 'Droid', arial, verdana;
    

    So, since droid did not exist anywhere, the text on the site would look like the screenshot above for a very small amount of people (for whatever reason). To fix it for those people, I just had to change it to:

    font-family: 'Droid Serif', arial, verdana;