I have an IM that I use on my site which I have created from scratch and I need help with a simple feature. What I am trying to do is have each user be able to set their IM color in their user panel so when someone IM’s them it will pull the color code from the database and set their font color automatically.
I am currently trying to use this :
$chatbody .= "<font size=\"-2\" color=\"".$member->imcolor."\"><b>".$username. "</b> : ".$chat->themessage."</font>
";
$chatbody is a variable that is directly passed to the chat and displayed in the message area. The size works, but the color does not. Any ideas?