Reputation: 154
Google Chrome can't show the fav icon of the website http://www.hausnaturpur.de/
Whereas Firefox and other browsers support the fav icon. This is the code used:
<link rel="shortcut icon" href="/images/newfavicon.ico" type="image/x-icon" />
What could be wrong?
Upvotes: 1
Views: 150
Reputation: 36
Try moving the image to root folder such that the new path for image would be http://www.hausnaturpur.de/newfavicon.ico
Upvotes: 2
Reputation: 938
from looking at the source of SO
<link rel="shortcut icon" href="http://cdn.sstatic.net/stackoverflow/img/favicon.ico">
also an article from wikipedia http://en.wikipedia.org/wiki/Favicon
I would suggest checking that the image is being sent through by pressing f12 on your keyboard inside of Chrome and checking the network tab (you will have to do a refresh for it to work). The only other thing i can suggest is renaming your icon file to favicon.ico
Upvotes: 0
Reputation: 350
Try this:
<link rel="shortcut icon"
href="http://www.hausnaturpur.de/images/newfavicon.ico">
If it works, than you should try this:
<link rel="shortcut icon" href="images/newfavicon.ico">
Upvotes: 1