Question

i have a network based on php and html. Now i have the issue, that the favicon doesn't show up in google-chrome. If i use firefox all works well. Any advices?

My Code:

<link rel="shortcut icon" href="http://teabag.webclient2.de/minis/images/favicon.png" />

Website: http://teabag.webclient2.de/minis/

Thanks!

Was it helpful?

Solution

I just checked out your website and noticed you have <link> placed in the <body> tag.

It should be within the <head> of the document instead. In doing so, it will work.

OTHER TIPS

Try this:

<link rel="icon" href="http://teabag.webclient2.de/minis/images/favicon.png" />

It worked for my icon :)

Try clearing your cache. Then add this:

<link rel="icon" type="image/png" href="http://teabag.webclient2.de/minis/images/favicon.png" />
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top