edit the goto.php and create a new template with conditionals
FIND:
HTML Code:
switch($_REQUEST['section'])
{
REPLACE:
HTML Code:
switch($_REQUEST['section'])
{
case 'about';
$globaltemplates[] = 'gtcustom_about';
break;
FIND:
HTML Code:
switch ($section)
{
REPLACE WITH:
HTML Code:
switch ($section)
{
case 'about';
eval('$HTML = "' . fetch_template('gtcustom_about') . '";');
break;
Create new template as you see fit
(use conditionals, use phrases, it's up to you):
name it
"gtcustom_about"
that's it