In Snow theme > qa-theme.php file
find function logged_in() around line #67
Find below
$this->output(
'<SPAN CLASS="qa-logged-in-points">',
'('.$pointshtml.')',
'</SPAN>'
);
Replace with
$this->output(
'<SPAN CLASS="qa-logged-in-points">',
$pointshtml,
'</SPAN>'
);