MyBB Community Forums

Full Version: Layout modification
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello...

I am new to myBB and need to change something in my layout :

I need to shift the "Last Post" colums before threads and posts column as shown below :


[Image: es2n12.jpg]


Please help me Smile
I think you need to change:

forumbit_depth1_cat
forumbit_depth2_forum
forumdisplay_subforums
forumbit_depth2_cat
First goto Templates > BlackEvo > Forum Bit Templates > forumbit_depth1_cat

Look for this line..

<td class="tcat" width="200" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>

Place it after this
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>

Then goto Templates > BlackEvo > Forum Bit Templates > forumbit_depth2_forum

again look for this

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

And place it after..

<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>
(2009-07-21, 11:32 PM)Lunty Wrote: [ -> ]First goto Templates > BlackEvo > Forum Bit Templates > forumbit_depth1_cat

..... (i've cut the quote cuz it takes space)
This works perfect
but still, forums with subforums are displayed in previous style still.

But i found the solutuions myself.. Thanks Big Grin

Did the step 1 for depth_2_cat
Ah yes sorry forgot about subforums, glad you got it fixed.