1

Compare http://fiddle.jshell.net/R3qEn/6/ and http://fiddle.jshell.net/R3qEn/7/ - the only difference is first line of css-frame - from which server we import glyphicons.

Why I import it like this - because otherwise Firefox goes fully retarded with it.

Using last(31.0.1650.63 m) chrome on Windows 8.1.

enter image description here

Irvin Dominin
  • 30,819
  • 9
  • 77
  • 111
scythargon
  • 3,363
  • 3
  • 32
  • 62

1 Answers1

1

The problem is because you are not serving the needed resources to display Glyphicons (WOFF, TTF)

Check the network console and you'll see:

GET glyphiconshalflings-regular.woff 404 Not Found

GET glyphiconshalflings-regular.ttf 404 Not Found

Serve correctly this resources and you'll fix the issue.

Related: WOFF Fonts, what Are they and why should I care?

Community
  • 1
  • 1
Irvin Dominin
  • 30,819
  • 9
  • 77
  • 111