Installed.
I suppose others might also want to go all the way with this formatting idea and make it exactly match the other areas with similar info. Instead of the above, try the following:
Replace the entire block. Remove everything between and including:
Code:
<if condition="$show['lastpostinfo']">
and it corresponding ending:
Then, replace it with the following:
Code:
<if condition="$show['lastpostinfo']">
<div style="text-align: $stylevar[left]">
$group[lastpostdate]
<if condition="!$show['detailedtime']">
<span class="time">$group[lastposttime]</span>
</if>
</div>
<if condition="$group['lastposterid']">
<div style="text-align: $stylevar[right]">
<phrase 1="member.php?$session[sessionurl]u=$group[lastposterid]" 2="$group[lastposter]">$vbphrase[by_x]</phrase>
<a href="group.php?$session[sessionurl]do=discuss&gmid=$group[lastgmid]#gmessage$group[lastgmid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
</div>
</if>
<else />
<div style="text-align: $stylevar[left]">
<div style="text-align: $stylevar[left]">
$vbphrase[group_created]
</div>
$group[lastpostdate]
<if condition="!$show['detailedtime']">
<span class="time">$group[lastposttime]</span>
</if>
</div>
</if>
This will give the information the same text alignment as similar blocks in other templates and also matches the presentation for the create date of the group if there are no messages to display. Additionally, it uses the standard phrases instead of hard coding "by" in the template.