That would be your <title> tag that lives in /skin1/customer/home.tpl
What's between <title> and </title> ?
I have CDSEO, so mine will not match yours... but it may look something like this:
Code:
<title>
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{$location[position].0|strip_tags|escape}
{if not %position.last%} :: {/if}
{/section}
{else}
{section name=position loop=$location step=-1}
{$location[position].0|strip_tags|escape}
{if not %position.last%} :: {/if}
{/section}
{/if}
</title>
That tells me that it is looking for your page title from your admin seo settings --
yup...
/admin/configuration.php?option=SEO
which pulls company nam from:
/admin/configuration.php?option=Company
This is a very SEO friendly way to make your title... I would make one minor change though, instead of using "::" as the separator, use a "-" -- that's a little more SEO friendly.
find:
Code:
{if not %position.last%} :: {/if}
change to:
Code:
{if not %position.last%} - {/if}
(both times)
I hope this is what you were looking for.
You can also figure this out for yourself by using webmaster mode and knowing a little about html -- the title of a page is determined by the <title> tag, so find the <title> tag and go from there...