MyBB Community Forums

Full Version: text in the center?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to do to the text was centered. How is this template?
ACP » Template Sets » Theme name » Templates » Forum Display Templates » forumdisplay_thread

find:
	<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right;">

Replace with:
	<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align:center;">

This should do what you wanted.
thanx!!!
(2010-08-05, 11:21 AM)sss2019 Wrote: [ -> ]thanx!!!

Glad to help Smile
And how do I align the center of the last posts on the main page?
help me please Rolleyes
Go to

ACP » Template Sets » Theme name » Templates » Forum Bit Templates » forumbit_depth2_forum

At the bottom, find:
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>

Replace with:
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$lastpost}</td>