Greg
Greg

Reputation: 3063

Favicon not showing on my website

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" />

Upvotes: 0

Views: 584

Answers (2)

ASHUTOSH
ASHUTOSH

Reputation: 892

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

Upvotes: 0

JJJ
JJJ

Reputation: 33153

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.

Upvotes: 3

Related Questions