MyBB Community Forums

Full Version: Change this...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: LNhsH.png]
to this;
[Image: qmwLB.png]
Your going to need to change the column orders around in the forum_bit templates.

Judging by your most recent threads, I think it would be a great benefit to you to learn your way around the MyBB templating system and basic HTML. Learning these important skills will help you save a ton of time in developing your own design and layout, and this is how everybody learns.

Create yourself a test board and tinker around.
Post to link with the code and I may be able to help.
(2012-12-16, 12:42 AM)Kodaks Wrote: [ -> ]Your going to need to change the column orders around in the forum_bit templates.

Judging by your most recent threads, I think it would be a great benefit to you to learn your way around the MyBB templating system and basic HTML. Learning these important skills will help you save a ton of time in developing your own design and layout, and this is how everybody learns.

Create yourself a test board and tinker around.
ok
(2012-12-16, 01:51 AM)ESR360 Wrote: [ -> ]Post to link with the code and I may be able to help.

	<td class="tcat" colspan="3" width="66%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']} / <a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></span></td>
		<td class="tcat" align="center" width="7%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></span></td>
		<td class="tcat" align="center" width="7%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$lang->views}</a> {$orderarrow['views']}</strong></span></td>
		{$ratingcol}
		<td class="tcat" align="right" width="20%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></span></td>
AdminCP -> Templates & Style -> Templates -> Your Theme's Templates -> forumdisplay_threadlist

Move:
<td class="tcat" colspan="3" width="66%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']} / <a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></span></td>

Below:
<td class="tcat" align="center" width="7%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></span></td>

AdminCP -> Templates & Style -> Templates -> Your Theme's Templates -> forumdisplay_thread

Move:
<td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}</td>

Below:
<tr>

It will look similar to this:
http://prntscr.com/mbrz6

If you wanted to remove the icon, you'd remove:
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>