Create 2 new profile fields...
Call the first one : Special Title - Set it to editable by the user to no
Call the second one : Glow colour - Set it to editable by the user to no
Open admin/functions.php
Find:
PHP Code:
if ($post[aim]!="") {
eval("\$post[aimicon] = \"".gettemplate("aim")."\";");
} else {
$post[aim]="";
}
add after:
PHP Code:
if ($post[fieldx]) {
if ($post[fieldy]) {
$extratitle="<div style=\"width:100%; filter:glow(color=$post[fieldy], strength=3)\">$post[fieldx]</div>";
} else {
$extratitle="$post[fieldx]<br>";
}
} else {
$extratitle="";
}
Change x & y to the field ids of the profile fields...
Then add $extratitle to your postbit template...
Then you want to install a hack by Xenon that allows Mods to edit profiles, and you want them to be able to edit those 2 fields
Satan