Topic: [SOLVED] favicon

How can i display a favicon?

Thank you

Re: [SOLVED] favicon

You can add a custom favicon by opening your Showkase theme's 'layout.tpl' file (e.g. 'showkase/_themes/kosel/pagetypes/layout.tpl') in a plain text editor and adding the following code immediately before the closing </head> tag.

<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">

Make sure that your chosen 'favicon.ico' file is in the correct location on your web server and that the path to it is correct in the code above. (The code above will work for a 'favicon.ico' file in your web space's root directory.)

Re: [SOLVED] favicon

thank you