In /skin1/customer/home.tpl
you will see:
Code:
{include file="meta.tpl" }
<link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}" />
Put your favicon.ico right before or right after the line for the stylesheet.
Something like this:
Code:
{include file="meta.tpl" }
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}" />
And put your favicon.ico image in your root directory -- it doesn't seem to work if its not in root.
Hope this helps.
Jeremy