Find this and remove it:
HTML Code:
<td class="tcat" width="100%">
<div class="smallfont">
<if condition="$show['firstunreadlink']">
<a href="$firstunread"><img class="inlineimg" src="$stylevar[imgdir_button]/firstnew.gif" alt="$vbphrase[view_first_unread]" border="0" /></a>
<a href="$firstunread"><strong>$vbphrase[view_first_unread]</strong></a>
</if>
</div>
</td>
Then find this right above where that was:
HTML Code:
<if condition="$show['pagenav']"><td align="$stylevar[right]">$pagenav</td></if>
And right above it add this:
HTML Code:
<td class="smallfont" align="right" width="100%">
<if condition="$show['firstunreadlink']">
<a href="$firstunread"><img class="inlineimg" src="$stylevar[imgdir_button]/firstnew.gif" alt="$vbphrase[view_first_unread]" border="0" /></a>
<a href="$firstunread"><strong>$vbphrase[view_first_unread]</strong></a>
</if>
</td>
The best thing to do when working on templates and changing things is to create a new style and play with things in the templates in that style. When you have it how you want, copy/paste that stuff into the site style template. But to learn, you really need a test style to try things out.