I made a couple different changes, moved the IP and report to next to the quote/edit buttons. Just posting it here in case anyone else wants to do it.
Did it by commenting out the following code
Code:
<!--<if condition="$show['reportlink']">
<a href="group.php?$session[sessionurl]do=report&gmid=$message[gmid]" rel="nofollow"><img src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a>
</if>-->
<!--<if condition="$message['itemipaddress']">
<a href="group.php?do=viewip&gmid=$message[gmid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/ip.gif" alt="$vbphrase[ip]" border="0" /></a>
</if>-->
and adding it as below
Code:
<td class="alt1" align="$stylevar[right]" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[left]: 0px; border-top: 0px">
<if condition="$message['itemipaddress']">
<a href="group.php?do=viewip&gmid=$message[gmid]" rel="nofollow"><img src="$stylevar[imgdir_button]/ip.gif" alt="$vbphrase[ip]" border="0" /></a>
</if>
<if condition="$show['reportlink']">
<a href="group.php?$session[sessionurl]do=report&gmid=$message[gmid]" rel="nofollow"><img src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a>
</if>
<a href="group.php?$session[sessionurl]do=message&discussionid=$message[discussionid]&gmq=$message[gmid]"><img src="$stylevar[imgdir_button]/quote.gif" alt="$vbphrase[quote]" border="0" /></a>
<if condition="$message['edit']">
<if condition="!$message[is_discussion]">
<img style="display: none" id="progress_$message[gmid]" src="$stylevar[imgdir_misc]/progress.gif" alt="$vbphrase[loading_editor_please_wait]" />
</if>
<a href="group.php?$session[sessionurl]do=message&gmid=$message[gmid]<if condition="$perpage">&pp=$perpage</if><if condition="$pagenumber">&page=$pagenumber</if>" id="gmessage_qe_edit_$message[gmid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
</if>
</td>