LOGO

做一個「有且僅有」的Logo,放在自己的網站地址欄URL前面。



準備一張300 x 300正方形的圖片。
Favicon maker- Create a favicon from any image自動產生一個完全屬於自己的Logo, 這是一個16 x 16的Icon檔案。
將此名為favicon檔案存到桌面。

因為全球華文網不接受Favicon maker- Create a favicon from any image提供的語法:
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">       
這個語法須要做修正。
語法copy好準備待命,
打開Notepad 將copy好的語法paste下來。這是(1)

將桌面上favicon檔案上傳到自己私人網路空間(我喜歡用Microsoft OfficeLive)。
點選打開favicon就可以得到favicon在自己私人網路空間的網址。
將這個自己私人網路空間的網址copy好
paste到Notepad語法之下。這是(2)

小心將(2)套入(1)語法改為:
<link rel="shortcut icon" type="image/x-icon" href="favicon在自己私人網路空間的網址">
這是(3)

header template 找到這樣的部份:
<link rel="shortcut icon" type="image/x-icon" href="{$url->getTemplateFile("favicon.ico")}" />
{if $badbehavior}
{$badbehavior->showBB2JavaScript()}
{/if}
</head>

delete
<link rel="shortcut icon" type="image/x-icon" href="{$url->getTemplateFile("favicon.ico")}" />

把Notepad改好的新語法(3):
<link rel="shortcut icon" type="image/x-icon" href="favicon在自己私人網路空間的網址">
小心地copy & paste 到原來的位置。
記得更新。

我用的模板是FallingLeaves。這個方法是否適用於其他的模板就不清楚了。
 

小心操作喲。很容易出錯的。
出了錯要怎麼改回去可不知道了。

謝謝雅文老師。 Laughing