Open template search_threadbit
Find following:
Code:
<!-- threadstats -->
<vb:if condition="!$show['notificationtype'] && !$thread['del_username']">
<ul class="threadstats td alt" title="<vb:if condition="$thread['dot_count'] > 0">{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}</vb:if>">
<li>{vb:rawphrase replies}: <a class="understate" href="misc.php?do=whoposted&t={vb:raw thread.threadid}" onclick="who({vb:raw thread.threadid}); return false;">{vb:raw thread.replycount}</a></li>
<li>{vb:rawphrase views}: {vb:raw thread.views}</li>
</ul>
</vb:if>
Replace with:
Code:
<!-- threadstats -->
<vb:if condition="!$show['notificationtype'] && !$thread['del_username']">
<dl class="threadstats td alt2" title="<vb:if condition="$thread['dot_count'] > 0">{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}</vb:if>">
<td>{vb:rawphrase replies}:</td> <dd><a class="understate" href="misc.php?do=whoposted&t={vb:raw thread.threadid}" onclick="who({vb:raw thread.threadid}); return false;">{vb:raw thread.replycount}</a></dd>
</dl>
<dl class="threadstats td alt2" title="<vb:if condition="$thread['dot_count'] > 0">{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}</vb:if>">
<td>{vb:rawphrase views}:</td> <dd>{vb:raw thread.views}</dd>
</dl>
</vb:if>
Open template additional.css
Add following:
Code:
.threadstats.td.alt2 {
height: 38px;
padding-top: 9px;
}
.threadinfo.thread {
width: 45%;
}