MyBB Community Forums

Full Version: Centre text in "Last Post" column on index?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do i centre the text in the "last Post" column, at the moment is aligned to the right?

ta
Look in the forumbit_depth2_forum template and find:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
Change:
align="right"
To:
align="center"
(2010-05-02, 03:18 PM)AJS Wrote: [ -> ]Look in the forumbit_depth2_forum template and find:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
Change:
align="right"
To:
align="center"

thanks Smile