开发者

Favicon does not show on Webkit browsers

开发者 https://www.devze.com 2023-01-03 12:23 出处:网络
I\'m having problems with putting a favicon on my website. I have this code <link rel=\"shortcut icon\" type=\"image/ico\" href=\"img/favicon.ico\">

I'm having problems with putting a favicon on my website.

I have this code

<link rel="shortcut icon" type="image/ico" href="img/favicon.ico">

And for some reason Firefox shows the favicon fine, but开发者_JAVA百科 on Webkit browsers its not showing up. I tried Google Chrome and Safari on a Mac and its not showing up; do I need to do something for these browsers?


Try placing a relative path and change the type to "image/x-icon":

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

Or just place it on the root:

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

精彩评论

暂无评论...
验证码 换一张
取 消