MyBB Community Forums

Full Version: move to the left the text from "Last Post"?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all, how can i make the text to be centered and not on the right side? right now i think the text is set to be on the right, if im not wrong:

[Image: 0703201310015.png]

what file i have to edit? firebug show this code:
<td class="trow2" valign="top" align="right" style="white-space: nowrap;">

but i cant find it

thanks
ACP > Themes & Styles > Forum Bit Templates > forumbit_depth2_forum.

Look for

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

Change right to center as needed.
Thanks, worked:

[Image: 0703201331521.png]

You know if the number of post and threads can be centered into the midle of the framework?

[Image: 0703201331720hue.png]

is there any way to make that numbers to look more profesion in the midle?
Go to: Home » Template Sets » Modern Templates » forumbit_depth2_forum

Find:

Quote:<td valign="top" align="center" style="white-space: nowrap" class="trow1">{$threads}{$unapproved['unapproved_threads']}</td>

Or similar to it, it should contain the variable: {$threads}{$unapproved['unapproved_threads']}

Just change valign="top" to valign="middle"

Similarly find the trow for posts & change valign="top" to valign="middle"

Posts trow will contain {$posts}{$unapproved['unapproved_posts']}.

Enjoy Smile
(2013-03-07, 06:08 AM)EGman Wrote: [ -> ]Go to: Home » Template Sets » Modern Templates » forumbit_depth2_forum

Find:

Quote:<td valign="top" align="center" style="white-space: nowrap" class="trow1">{$threads}{$unapproved['unapproved_threads']}</td>

Or similar to it, it should contain the variable: {$threads}{$unapproved['unapproved_threads']}

Just change valign="top" to valign="middle"

Similarly find the trow for posts & change valign="top" to valign="middle"

Posts trow will contain {$posts}{$unapproved['unapproved_posts']}.

Enjoy Smile

there is no Home » Template Sets » Modern Templates »

but in Forum Bit Templates is the forumbit_depth2_forum

[Image: 07032013120032.png]

i changed the values and worked Big Grin

[Image: 07032013121012.png]

how can i make the same move for this images:

[Image: 07032013121327.png]

same file? i was trying to modify the values but this images dont want to go into the middle Big Grin

EDIT: nevermind, it worked, this was the line for that images:
<td class="{$bgcolor}" align="middle" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.png" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read" id="mark_read_{$forum['fid']}" /></td>

from the same file forumbit_depth2_forum

[Image: 07032013122135.png]

Thanks guys, much apreciated