MyBB Community Forums

Full Version: HELP: Last Post column properties
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1. where can i edit the Last Post properties?

[Image: 1gV8P.jpeg]

thanks!Big Grin
i need to increase the column width - nobody here knows how do do this? Sad
navigate to forumbit_depth2_forum template of the theme
find code similar to below
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
you can add required width to it like below
<td class="{$bgcolor}" width="300px" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
(2013-09-05, 07:02 AM).m. Wrote: [ -> ]navigate to forumbit_depth2_forum template of the theme
find code similar to below
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
you can add required width to it like below
<td class="{$bgcolor}" width="300px" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

hey! a familiar helping hand, thanks! Smile

is it possible to increase the number of characters of the topic title in the last post column?