MyBB Community Forums

Full Version: how can i add one line (with date, edit date, nr) above each post in postbit_classic?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi ppl, right now im working on my theme and i would like to edit more the classic mode, i want to make the classic mode have above each post one line with the date of the post, edit date, post number, etc, for example in horizontal mode u got that line up, thats what i want to see on but in classic mode, this is how i have it now:

[Image: 0onc.png]

and look, the horizontal got that bar above each post:

[Image: xa5r.png]

anyone know how to get that?

thanks
Add:
		<tr>
			<td colspan="2" class="tcat">
				<div class="float_left smalltext">
					{$post['postdate']}, {$post['posttime']} <span id="edited_by_{$post['pid']}">{$post['editedmsg']}</span>
				</div>
				{$post['posturl']}
			</td>
		</tr>
to postbit_classic template, right below:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">

That's for the default theme, edit it to suit your needs.
Thank you!

You know how to remove this lines from inside postbit?

[Image: 9pwp.png]