1

I'm using the google font "Bubbler one" in one of my sites and it just showed in half line under Chrome. It worked fine in FF and IE. I've been wallbashing my head to find a solution until I tested the font itself in Chrome directly from its google page:

Bubbler one

Under Chrome, it's shown only in half line.

Do you have any idea about what's causing that issue and how to solve it?

Alan Piralla
  • 1,216
  • 2
  • 11
  • 21

1 Answers1

3

I solved the problem following these steps:

1) downloaded the file from Google

2) went on fontsquirrel and converted the .ttf file.

3) hosted it locally and used the following code:

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

And finally used it with:

font-family: 'bubbler_oneregular';

Hope this might help some of you, this should work with other Google fonts as well.

Alan Piralla
  • 1,216
  • 2
  • 11
  • 21