MyBB Community Forums

Full Version: Fix Classic Postbit Width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using a flexible theme with the classic postbit style,
now I would like to know how to change this:

[Image: 91837861.png]

into this:

[Image: 54160987.png]

Thanks in advance!
OK... why is nobody giving a answer :/
What' are the contents of your postbit_classic template? And what's your forum URL?

Basically, you just have to change the width of the column.
URL is in my signature,
this is the content of the postbit_classic:
{$ignore_bit}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
	<tr>
		<td class="post_userbit" width="15%" valign="top" style="white-space: nowrap; text-align: center; border-bottom: 2px solid #121212; border-right: 1px solid #121212;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
		<strong><span class="largetext"><a style="color: #111;" href="{$mybb->settings['bburl']}/member.php?action=profile&amp;uid={$post['uid']}">{$post['username']}</a></span></strong><br />
			<span class="smalltext">{$post['usertitle']}</span><br />
			{$post['groupimage']}
			{$post['userstars']}
			{$post['useravatar']}<br />
                        {$post['awards']}
			{$post['user_details']}{$post['newpoints_postbit']}
	</td>
	<td class="{$altbg}" valign="top">
		<table width="100%">
			<tr><td>{$post['posturl']}<span class="smalltext"><strong>{$post['icon']}{$post['subject']} {$post['subject_extra']}</strong></span>
			<br />
			<div id="pid_{$post['pid']}" style="padding: 5px 0 5px 0;">
				{$post['message']}
			</div>
			{$post['attachments']}
			{$post['signature']}
			<div style="text-align: right; vertical-align: bottom;" id="post_meta_{$post['pid']}">
				<div id="edited_by_{$post['pid']}">{$post['editedmsg']}</div>
				<span class="smalltext">{$post['iplogged']}</span>
			</div>
		</td></tr>
	</table>
</td>
</tr>
<tr>
	<td class="{$altbg}" style="white-space: nowrap; text-align: center; vertical-align: middle;"><span class="smalltext">{$post['postdate']} {$post['posttime']}</span></td>
	<td class="{$altbg}" style="vertical-align: middle;">
		<table width="100%" border="0" cellpadding="0" cellspacing="0">
			<tr valign="bottom" class="post_buttons">
				<td align="left" ><span class="smalltext">{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}</span></td>
				<td align="right">{$post['button_spam']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}</td>
			</tr>
		</table>
	</td>
</tr>
</table>
in:
 <td class="post_userbit" width="15%" ....

Change width="15%" with the pixels that you want.
Yeah that did it. Thank you very much! Rolleyes
delet
Good grave-digging.
I had no clue at all at this time xD