MyBB Community Forums

Full Version: A few Changes
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here are the things I want to change on my forum: http://horseworld.dreamhosters.com/

1) I would like the threads and posts numbers to be centered.

2) I want the threads and posts column bg to be blue and the rest white.

3) I want the affiliates table I have be on the same like as the info centre or board statistics, either next to it or with a space between.

4) I would like smilies with the quick reply.

Toungue
1, 2, and 3 you can do by using the Template and Theme editor in the AdminCP.

As for #4, it might be done as a mod, but it has been stated many times that it will never be a core feature. Sorry Smile
Galen Wrote:1, 2, and 3 you can do by using the Template and Theme editor in the AdminCP.

As for #4, it might be done as a mod, but it has been stated many times that it will never be a core feature. Sorry Smile

Thanks, I knew it would be in the Template and Theme editor but I don't know where can you give me abit more advice as to exactly where it would be and what to change.
Bump Smile
Any more advice please??
1. Looking at your forum, they already are centered Smile.

2. Go to "ACP > Templates > Modify/Delete > *Expand* > Forum Bit Templates > forumbit_depth2_forum > *Edit*".
Quote:Look For:
<td class="{$bgcolor}" valign="top">

Change To:
<td class="{$bgcolor}" valign="top" style="background: white">


Look For:
<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
<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>
</tr>

Change To:
<div class="smalltext" style="background: white">{$forum['description']}{$modlist}{$subforums}</div>
<td class="{$bgcolor}" valign="top" align="center" style="background: #dde9f7">{$threads}{$unapproved['unapproved_threads']}</td>
<td class="{$bgcolor}" valign="top" align="center" style="background: #dde9f7">{$posts}{$unapproved['unapproved_posts']}</td>
<td class="{$bgcolor}" valign="top" align="right" style="background: white">{$lastpost}</td>
</tr>

3. Go to "ACP > Templates > Modify/Delete > *Expand* > Index Templates > index_stats > *Edit*".
Quote:Look For:
<tr><td class="tcat"><strong>{$lang->boardstats}</strong></td></tr>
<tr>
<td class="trow1"><span class="smalltext">
{$lang->stats_posts_threads}<br />
{$lang->stats_numusers}<br />
{$lang->stats_newestuser}<br />
{$lang->stats_mostonline}
</span>
</td>
</tr>


Add After:
<tr><td class="tcat"><strong>Affiliates</strong></td></tr>
<tr>
<td class="trow1">
<center><img src="http://img.photobucket.com/albums/v724/SarahBates/minibanner.jpg" /><br><textarea rows="2" name="S1" cols="15"><a href="http://horseworld.dreamhosters.com/" Target="_blank">
<img src="http://img.photobucket.com/albums/v724/SarahBates/minibanner.jpg" width=88 height=31 border=0 alt="Horse World" /></a></textarea></center>
</td>
</tr>

Hope this helps Smile.