MyBB Community Forums

Full Version: layout change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
sorry if this is the wrong place..

i would like to change the width of the column with the member details to a fixed 100px and the rest of the thread view to fill the remaining width (100% or auto or whatever)

http://forum.nacoya.co.uk/showthread.php?tid=1721

can someone please tell me how to do this.

I tried in postbit but couldn't get it to work.

cheers
ACP > Templates > Modify / Delete > *Template Set* > Post Bit Templates > Expand > postbit
<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
{$post['user_details']}
</td>
<td class="{$altbg}" width="85%" valign="top">

ACP > Templates > Modify / Delete > *Template Set* > Show Thread Templates > Expand > postbit

<tr>
<td class="tcat" width="15%"><span class="smalltext"><strong>{$lang->author}</strong></span></td>
<td class="tcat" width="85%"><span class="smalltext"><strong>{$lang->message}</strong></span></td>
</tr>
Change the widths to your liking.
thanks christian .. seems to have done the trick