The script as it stands doesn't generate either style of title - however you can easily append the value of $config_title to the generated title (e.g. search keywords, product name etc.) with the | character by changing html/header.php which contains the following code on line 13:
Hi Neil,
The script as it stands doesn't generate either style of title - however you can easily append the value of $config_title to the generated title (e.g. search keywords, product name etc.) with the | character by changing html/header.php which contains the following code on line 13:
<title><?php print (isset($header["title"])?$header["title"]:$config_title); ?></title>
...try something like this instead:
<title><?php print (isset($header["title"])?$header["title"]." | ".$config_title:$config_title); ?></title>
Cheers,
David.