MyBB Community Forums

Full Version: Modify the count and posts tables?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering if anyone knows a good tutorial or anything like that on how to do this:

[attachment=15969]
Real example: http://www.gamerspact.com/forum.php

Thanks,
Bob
Can do it like this...

CSS:
.threadposts{
	background: #ffffff;
	margin: auto auto;
	border: 1px solid #c5c5c5;
}

<table class="threadposts" width="100px">
<tr>
<td width="30%"><strong>Threads:</strong></td> <td width="10%">{$threads}{$unapproved['unapproved_threads']}</td>

</tr>
<tr>
<td width="30%"><strong>Posts:</strong></td> <td width="10%">{$posts}{$unapproved['unapproved_posts']}</td>
</tr>
</table>

Or something like that.
Tried that but I will got to edit several templates such as mbit_depth1_cat, mbit_depth2_cat, mbit_depth2_forum and some other stuff I tried what u did but it just screws over the whole table layout.
Ah, well that does work, but you will need to edit several bits. I will do it for you later and post up the edits you need to do Smile