I wrote this for somebody else and it worked how he wanted it to work. Modify however you want.
Open threadbit template and find and remove:
HTML Code:
<vb:if condition="$thread['movedprefix'] OR $thread['typeprefix'] OR $thread['moderatedprefix'] OR $thread['prefix_rich']">
<span class="prefix understate">
{vb:raw thread.movedprefix}
{vb:raw thread.typeprefix}
{vb:raw thread.moderatedprefix}
{vb:raw thread.prefix_rich}
</span>
</vb:if>
The find:
HTML Code:
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" <vb:if condition="$show['threadcount']">title="{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}"</vb:if>></a>
Add directly below that:
HTML Code:
<span class="prefix understate">
<vb:if condition="$thread['movedprefix'] OR $thread['typeprefix'] OR $thread['moderatedprefix'] OR $thread['prefix_rich']">
{vb:raw thread.movedprefix}
{vb:raw thread.typeprefix}
{vb:raw thread.moderatedprefix}
{vb:raw thread.prefix_rich}
<vb:else /> </vb:if>
</span>
Add to additional.css template:
HTML Code:
/* Give prefixes their own column */
img.threadicon {display: block; float: left; clear:right: }
.prefix {width: 100px; display: block; float: left;clear: right; height: 40px}