I have below
<i class="icon-remove"></i>
which displays the close icon correctly on firefox,chrome,IE 8 but not on IE9.
Here is font-awesome.css
@font-face {
font-family: 'MyWebFont';
src: url('webfont.eot');
src: url('webfont.eot?#iefix') format('embedded-opentype'),
url('webfont.woff') format('woff'),
url('webfont.ttf') format('truetype'),
url('webfont.svg#svgFontName') format('svg');
}
Weird thing is that it works on one client system with exactly same version of IE9 and windows 7 OS, but not on other. Using tomcat as webserver.
Any help/suggestions whats happening here ?