Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Favicon in EDGE

I don't think this should be treated as a duplicate since the first question didn't get a proper answer

I have a WP page running and for some reason I can't get Edge to display the favicon. It works everywhere, even in IE11. The first two lines are mine, the others are generated by WP. I doesn't work on deployed server either.

<link rel="icon" sizes="16x16" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="http://192.168.1.59/wp-content/uploads/logo.jpg" sizes="32x32" />

like image 668
Martin Macura Avatar asked Oct 17 '22 10:10

Martin Macura


1 Answers

Please try

<meta http-equiv="X-UA-Compatible" content="IE=edge">

Note : MS Edge won't display favicon for locally hosted sites.

like image 56
Niraj Avatar answered Oct 21 '22 05:10

Niraj