0

For some reason my favicon doesn't show up on my website. I tested mydomain.com/favicon.ico and I can see the icon.I'm using latest version of safari. I'm using the code below in my head tags. What's the issue? Tks

<link rel="icon" href="favicon.ico" type="image/x-icon" />
Greg
  • 3,025
  • 13
  • 58
  • 106

2 Answers2

3

You are most likely using Internet Explorer to test the page. IE doesn't support anything but the ICO format, and your favicon is a png.

Use http://tools.dynamicdrive.com/favicon/ or similar to convert the file to ICO.

JJJ
  • 32,902
  • 20
  • 89
  • 102
0

Use this: <link rel="icon" type="image/ png" href="http:// example.com/ myicon.png">

ASHUTOSH
  • 862
  • 1
  • 10
  • 17