Reputation: 32153
I'm trying to get my site's icon to show up in Google Chrome, but am stumped as to why it's not. It works in IE, FF, Opera, and Safari. Here's the icon-related code currently on the page:
<LINK REL="apple-touch-icon" HREF="/_images/icons/BHS2.2 - Modern 512.png" TYPE="image/png" />
<LINK REL="shortcut icon" HREF="/_images/icons/BHS2.2 - Modern.ico" TYPE="image/x-icon" />
<LINK REL="favicon" HREF="/_images/icons/BHS2.2 - Modern.ico" TYPE="image/x-icon" />
The actual page is at BHStudios.org in case you want the full sauce. I don't want any tangents about site design, just the icon.
Upvotes: 0
Views: 7429
Reputation: 1461
change the name to favicon.ico and move it to the root of the site.
Upvotes: 2
Reputation: 708
after a google search, i've found this:
<link rel="shortcut icon" href="/_images/icons/BHS2.2 - Modern.ico" type="image/x-icon" />
<link rel="icon" href="/_images/icons/BHS2.2 - Modern.ico" type="image/x-icon" />
please try and tell me if it worked.
Upvotes: 0