Got it.
Go to Plugins & Products > Plugin Manager > Find "Usergroup Color Bar" product and click edit on the only plugin > Replace the code in the textbox with the following:
Code:
if (THIS_SCRIPT == "index" and $vbulletin->options['ugcb_onoff'])
{
$activeusers2 .= '<hr />';
$userbuls = split(',', $vbulletin->options['sirala']);
foreach($userbuls AS $userbul) {
$activeusers2 .= $vbulletin->usergroupcache["$userbul"]['opentag'] . '• '.$vbulletin->usergroupcache["$userbul"]['title'] . $vbulletin->usergroupcache["$userbul"]['closetag'].' ';
}
$activeusers = $activeusers . '<b>'.$activeusers2 .'</b><br />';
}
Add <br /> around the red section if you want another space between the users online and the legend (like you showed me before.)