I've faced the same situation, and eventually found that it's Font-Awesome's issue on IE when cache is disabled (i.e. HTTP header with: 'Pragma: No-cache' and 'Cache-control: No-cache').
Reference: https://stackoverflow.com/a/33508291/4684232
Font-Awesome needs caching on IE, so the solution in my case is DON'T block the cache for font files requests (i.e. Request.Path.EndsWith([font file extensions])
Under folder Umbraco\assets\fonts, you'll find the extensions you need to escape are ".eot", ".svg", ".tff", ".woff", ".woff2"
Menu icons not shown in IE works fine in chrome
As you can see from the picture i can see the icons in google but not in Internet explorer.
Hi Ali.
Could you try and bump the client dependecy version number by 1 in /Config/ClientDependecy.config and see if the problem still exists?
I think its some kind of settings in IE because its working on IE on other cyctems but just not for one system still have to do some testing.
Ah, I understand. Yes that sounds like your IE browser might have some strange settings.
Good luck!
I've faced the same situation, and eventually found that it's Font-Awesome's issue on IE when cache is disabled (i.e.
HTTP header with: 'Pragma: No-cache' and 'Cache-control: No-cache'
). Reference: https://stackoverflow.com/a/33508291/4684232Font-Awesome needs caching on IE, so the solution in my case is DON'T block the cache for font files requests (i.e.
Request.Path.EndsWith([font file extensions])
Under folder
Umbraco\assets\fonts
, you'll find the extensions you need to escape are".eot", ".svg", ".tff", ".woff", ".woff2"
Hope it helps!
is working on a reply...