Amount of messages next to Message count

Sander

Member
Hi all,

First of all, I want to thank the developers for creating such an easy to use, but powerfull forum software.
I've only bought a license this afternoon but I'm already very glad that I did.

However, I've ran into a little visual problem. I've enabled the showing of user info on my forum, but the join date, amount of posts etc. are all shown under their respective line.

Like so:
Message Count:
4

Trophy Points:
3

However I want them to be shown like so:
Message Count: 4

Trophy Points: 3

How can I achieve this? I went through the files and found this:

Code:
<xen:if is="@messageShowTrophyPoints">
                    <dl class="pairsInline">
                        <dt>{xen:phrase trophy_points}:</dt>
                        <dd><a href="{xen:link 'members/trophies', $user}" class="OverlayTrigger concealed">{xen:number $user.trophy_points}</a></dd>
                    </dl>
                </xen:if>

However since I'm really new to Xenforo, this is all a bit abra cadabra to me.
Could anyone help me out?

Thanks,

Sander
 
Code:
<xen:if is="@messageShowTrophyPoints">
                    <dl class="pairsInline">
                        <dt>{xen:phrase trophy_points}: <a href="{xen:link 'members/trophies', $user}" class="OverlayTrigger concealed">{xen:number $user.trophy_points}</a></dt>
                    </dl>
                </xen:if>
 
Top Bottom