Show what you have for that in the userinfopane template. Usually it is as simple as changing this
<li class='post_count desc lighter'>
{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']}
</li>
to this
<li class='post_count desc lighter'>
<span class="ft" style="float:right">{$this->lang->words['m_posts']}</span><span class="fc" style="float:left">{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span>
</li>