Thanks dear :up:
This is my code:
PHP Code:
if ($vbulletin->userinfo['field12'] == "GIRL")
{
$user['musername'] = '<span style="color:pink;">' . $user['username'] . '</span>';
}
else
{
$user['musername'] = '<span style="color:blue;">' . $user['username'] . '</span>';
}
But I got all users in blue color only ! No pink
When I only change (GIRL) with (BOY) in the first line I got all users in pink color.
see the attached screen-shots
I appreciate your help