[Fixed]-Cant load css of Glyphicon. bootstrap – django

1πŸ‘

βœ…

You need to download glyphicon fonts and put them in the ../fonts directory (path relative to your bootstrap.css) so your path structure resembles that:

your_static_dir
β”œβ”€β”€ css
β”‚   └── bootstrap.css
└── fonts
    β”œβ”€β”€ glyphicons-halflings-regular.eot
    β”œβ”€β”€ glyphicons-halflings-regular.svg
    β”œβ”€β”€ glyphicons-halflings-regular.ttf
    └── glyphicons-halflings-regular.woff

0πŸ‘

look at path in β€œbootstrap.css” line 266

src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  • static
    • css
      • bootstrap.css
      • bootstrap.css.map
      • …
    • fonts
      • glyphicons-….eot
      • glyphicons-….svg
      • glyphicons-….ttf
      • glyphicons-….woff
      • glyphicons-….woff2
    • js
      • …

Leave a comment