- I have a favicon image generated that I would like to display in IE 11 but for the life of me I cannot figure out how to get it to display in IE 11.
- I used a favicon generator at XXX to create my
32x32 favicon
image then uploaded it to YYY where I generated the final favicon.ico image file comprising I expect the image in four different sizes. - I then uploaded the favicon.ico image file to my server's root directory.
- I inserted the
<link rel="shortcut icon" href="../Resouce/images/favicon.ico" type="image/x-icon" />
in the tag pair in my index.html file and uploaded it to my server's root directory. But when I load my home page in IE 11 no favicon is displayed. I am stumped. I have tried clearing my browser cache but still no joy.
Asked
Active
Viewed 556 times
0
-
Possible duplicate of [favicon not working in IE](https://stackoverflow.com/questions/122067/favicon-not-working-in-ie) – Granny Sep 13 '17 at 06:38
1 Answers
0
Can you show some code, and have you tried:
<link rel="icon" href=" - path to your favicon.ico - " type="image/x-icon" />
<link rel="shortcut icon" href="- path to your favicon.ico -" type="image/x-icon" />
or this:
<link rel="icon" href="/favicon.ico" type="image/vnd.microsoft.icon">

Anders Sørensen
- 426
- 1
- 4
- 14
-
-
-
-
-
-
-
-
btw the first 2 link should both be in your header not only one of them – Anders Sørensen Sep 13 '17 at 07:55
-