In Internet Explorer 7 the <span class="glyphicon glyphicon-shopping-cart"></span>
doesn't work.
How to get this working?
In Internet Explorer 7 the <span class="glyphicon glyphicon-shopping-cart"></span>
doesn't work.
How to get this working?
Try this in your css. See https://github.com/yargalot/glyphicons-bootstrap3-ie7 for more information about this solution.
.glyphicon {
font-family: 'Glyphicons Halflings';
font-style: normal;
text-decoration: inherit;
line-height: normal;
}
.glyphicon-shopping-cart {
zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
}
You problem could also lie in the security settings of the browser. See Only some glyphicons showing in IE and bootstrap 3.2.0 glyphicons are not displaying in internet explorer
Hope that helps