Hi I use a theme of bootstrap known as minton which handles icons moslty using font awesome. I think it is a bootstrap 3/4 thing.
In short: This boostrap 4.0 lacks glypicons. I would like to add them. Too many dependencies require them. I have the glyphicons fonts in the fonts dir
asssets/fonts/glyphicons-halflings-regular.eot
asssets/fonts/glyphicons-halflings-regular.svg
asssets/fonts/glyphicons-halflings-regular.tff
asssets/fonts/glyphicons-halflings-regular.woff
and the bootstrap.min.css is here
- asssets/css/bootstrap.min.css
and I added this css to the page via a icons.css (which among other things) now has
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), 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');
}
but they are not appearing when requested. Can anyone shed light onto this?