MyBB Community Forums

Full Version: Center aligning board posts and threads numbers
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On the default when the forum maker, board title and description, number of posts, number of threads and latest post are displayed they go to the top of the area. How can I center them instead so they are always in the center no matter how long the description is.

I hope this makes sense Smile
In "forumbit_depth2_forum" template, Change valign="top" to valign="middle" in Thraeds and Posts <td> s
That didn't seem to help, I mean for the index.
AdminCP > templates > your theme's templates > Forum bit templates > forumbit_depth2_forum > find the following;
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="white-space: nowrap">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="white-space: nowrap">{$lastpost}</td>
and Change "top" intoto "middle"
Ah sorry for misreading the first time. Worked perfectly, thanks!