I figured it out...
You add :
PHP Code:
if ($post[field9]) {
$extratitlea="$post[field9]<br>";
} else {
$extratitlea="";
}
After :
PHP Code:
if ($post[field5]) {
if ($post[field6]) {
$extratitle="<div style=\"width:100%; filter:glow(color=$post[field6], strength=3)\">$post[field5]</div>";
} else {
$extratitle="$post[field5]<br>";
}
} else {
$extratitle="";
}
Then you add :
Code:
<smallfont>$extratitlea</smallfont>
to the Postbit template...
Satan