Kanta
Kanta

Reputation: 11

Favicon not showing in Chrome and IE8

Google Chrome and IE8/9 don't display my favicon. Here is my HTML code from the head tag:

<link rel="icon" href="images/favi.ico" type="image/x-icon" />
<link rel="shortcut icon" href="images/favi.ico" type="image/x-icon" />

Can you please solve this issue?

Upvotes: 0

Views: 3987

Answers (2)

Taifun
Taifun

Reputation: 6293

put it in the root directory and it should work...
<link rel="shortcut icon" href="favicon.ico">
for more info, see here http://en.wikipedia.org/wiki/Favicon and you should better use the default name favicon.ico, probably you have to clean your cache in your browser first...

Upvotes: 1

galata
galata

Reputation: 136

Try this: <link rel="icon" type="image/ico" href="path_to_icon/favicon.ico"/>

Upvotes: 1

Related Questions