|
For the IE6 compatability, we can't tell what the problem is without a link or full code.
As for the icon, I don't think IE supports anything except .ico format for favicons, but chrome should be okay with a .png
Is your site on the web? I know IE doesn't display favicons stored locally, ie. if the site is on your hard drive, maybe chrome is the same.
If it is on the web but still not displaying try making the path to the icon absolute (the full web address, including the www) with the icon in the root directory of your site:
<link rel="shortcut icon" type="image/x-icon" href="http://www.yoursite.com/favicon.ico" />
<link rel="icon" type="image/png" href="http://www.yoursite.com/favicon.png" />
Last edited by Kelpie; 03-03-2011 at 06:41 AM..
|