我的网站在这里:www.drizly.com
我们的favicon出现在Firefox中但不出现在Chrome中......我已经阅读并尝试了所有内容,嗯,显然不是一切。我不明白。有人可以帮忙吗?
答案 0 :(得分:0)
尝试使用rel="shortcut icon"
和您的favicon的绝对网址。
示例:
<link rel="shortcut icon" href="http://example.com/favicon.ico" />
答案 1 :(得分:0)
你的html结构错误,你错过了开放标记<html>
。
现在我明白了:
<DOCTYPE! html>
<head>
...
</head>
<body>
...
</body>
</html>
Chrome将其解释为:
<html>
<head>
</head>
<body>
<doctype! html="">
<title>Drizly | Alcohol Delivery, Boston MA.</title>
<link rel="shortcut icon" href="http://drizly.com/img/favicon.ico">
...
</body>
</html>