MyBB Community Forums

Full Version: Changing Threads & Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can I make
[Image: GJZ1o8z.png]

Look like this:
[Image: m2sSZG7.png]
is it on the index page ? can we have your forum url
(2013-08-03, 02:37 AM).m. Wrote: [ -> ]is it on the index page ? can we have your forum url
Well my forum is the first picture
admin panel >> templates >> active theme templates >> Forum Bit Templates >> forumbit_depth2_forum

find code like below
{$threads}{$unapproved['unapproved_threads']}
<br />
{$posts}{$unapproved['unapproved_posts']}

change it like below
<div class="numtopics">{$threads}{$unapproved['unapproved_threads']}</div>
<div class="numposts">{$posts}{$unapproved['unapproved_posts']}</div>
and add required css style for .numtopics & .numposts classes in the global.css (advanced edit mode)
(2013-08-03, 03:45 AM).m. Wrote: [ -> ]admin panel >> templates >> active theme templates >> Forum Bit Templates >> forumbit_depth2_forum
My template is different.
Here's what I have:
<tr>
<td class="{$bgcolor}" align="center" valign="middle" width="1"><img src="{$theme['imgdir']}/{$lightbulb['folder']}.gif" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="ajax_mark_read tooltip" id="mark_read_{$forum['fid']}" /></td>
<td class="{$bgcolor}" valign="middle">
<h2><a class="tooltip" href="{$forum_url}" title="{$forum['description']}">{$forum['name']}</a></h2><h3>{$subforums}</h3>
</td>
<td class="{$bgcolor}" valign="middle" align="right" style="white-space: nowrap; padding-right: 20px;" width="130px"><div&nbsp;class="numtopics">{$threads}{$unapproved['unapproved_threads']} threads<br />{$posts}{$unapproved['unapproved_posts']} posts</td>
<td class="{$bgcolor}" valign="middle" align="left" style="white-space: nowrap" width="250px">{$lastpost}</td>
</tr>
Any help?!