postbit_legacy username + online status
Hi,
I added a line in the postbit legacy template which displays the username and its online/offline status.
This line is right above the 'join date':
<div class="postinfo">$post[username] $post[onlinestatus]</div>
And these are the lines in the postbit_online template I replaced with the original:
<if condition="$onlinestatus==0"><div class="smallfont">is: <font color="#BBBBBB"><b>Offline</b></font></div></if>
<if condition="$onlinestatus==1"><div class="smallfont">is: <font color="green"><b>Online</b></font></div></if>
<if condition="$onlinestatus==2"><div class="smallfont">is: <i><b>Invisible</b></i></div></if>
The problem is, instead of, for example, "Username is: online" it displays it like this:
Username
is: online
It's spread over 2 lines. How can I change it to make it display on 1 line?
The space is not the problem, there is plenty space for the chars to be on 1 line. The 'join date' is much longer and is still displayed on 1 line. So this should not be the problem.
Thanks in advance!
|