this is what i did
first i made an option for them to select the color code within the usercp
Add New User Profile Field
Single-Line Text Box
Name - Glow
Display Size - 6
Field Required - no
Field Editable by User? - yes
Max length of allowed user input to - 6 (you can make it longer so they can type in a color like yellow)
GET FIELD I.D.
Add New User Profile Field
Single-Line Text Box
Name - Font Color
Display Size - 6
Field Required - no
Field Editable by User? - yes
Max length of allowed user input to - 6 (you can make it longer so they can type in a color like yellow)
GET FIELD I.D.
Template Edit - Postbit or postbit_legacy
FIND
PHP Code:
<if condition="$show['profile']">
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
<else />
$post[musername]
</if>
Replace field15 with your glow field I.D
Replace field14 with your font field I.D
Then Replace With
PHP Code:
<if condition="$post[field15]">
<div style="width:100%;filter:glow(color=$post[field15],strenght=1)"><a style="font-size:10pt;color:#$post[field14]"href="member.php?$session[sessionurl]u=$post[userid]"><b>$post[username]</b></a></div>
<else /><a style="font-size:10pt" href="member.php?$session[sessionurl]u=$post[userid]"><b>$post[username]</b></a></if>