MyBB Community Forums

Full Version: postbit edit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hot to edit postbit template if i want to change my layout like this?

[Image: 35postbit.jpg]

help pls..
That seems to be a edit making it all table rows.
can show me how?
This should work, and of course you'll need to edit the looks by css.

<table border="0">
	<tr>
		<th colspan="2" align="center">{$post['usertitle']}</center></th>
	</tr>
	
	<tr>
		<td align="left">{$lang->postbit_posts}:</td>
		<td align="right">{$post['postnum']}</td>
	</tr>
	
	<tr>
		<td align="left">{$lang->postbit_joined}:</td>
		<td align="right">{$post['userregdate']}</td>
	</tr>
	
	<tr>
		<td colspan="2">{$post['replink']}</td>
	</tr>
	
	<tr>
		<td colspan="2">{$post['warninglevel']}</td>
	</tr>
</table>