Open template threadbit and find:
Code:
<!-- title / author block -->
<div class="inner">
add below:
Code:
<div class="threadprefix">
<vb:if condition="!empty($thread['prefixid'])"> {vb:raw thread.prefix_rich} <vb:else /> None </vb:if>
</div>
find:
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>
replace with:
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>
Save and open template threadlist.css and find:
Code:
.threadlisthead span.threadinfo {
width: 62%;
}
.threadlisthead span.threadinfo_withnotification {
width: 47%;
}
Replace with:
Code:
.threadlisthead span.threadinfo {
width: 52%;
}
.threadlisthead span.threadinfo_withnotification {
width: 37%;
}
Find:
Code:
.threadbit .threadinfo {
width: 62%;
min-width: 350px;
}
.threadbit .threadinfo_withnotification {
width: 47%;
}
Replace with:
Code:
.threadbit .threadinfo {
width: 52%;
min-width: 350px;
}
.threadbit .threadinfo_withnotification {
width: 37%;
}
and add this add the end of the template:
Code:
.threadbit .threadprefix {
float: {vb:stylevar left};
width: 10%;
margin: {vb:stylevar padding};
}
That should do it.