adding a 'favicon' to home.tpl
Hi everyone,
after my first unfortunate attend at adding a favicon to the home.tpl I thought I would just ask if someone could tell me if what I have now done is correct...
so far I have created the favicon and uploaded it to the public html folder
I have then inserted the line code
<link rel="shortcut icon" href="/favicon.ico">
as is seen below between <head> and </head>
<html>
<head>
<title>{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{if not %position.first%}{$location[position].0|escape}
{else}{$lng.txt_site_title}{/if}
{if not %position.last%} :: {/if}
{/section}
{else}
{section name=position loop=$location step=-1}
{if not %position.first%}{$location[position].0|escape}
{else}{$lng.txt_site_title}{/if}
{if not %position.last%} :: {/if}
{/section}
{/if}</title>
{include file="meta.tpl" }
<link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}" />
<link rel="shortcut icon" href="/favicon.ico">
</head>
Is there anything else I need to do to make this template change work?
Thanks
|