MyBB Community Forums

Full Version: Make sub forums more oragnized
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: ee8ed5476437455392a8211dd35a393a.png]
URL: http://promotionparadise.net/index.php

I am not sure how to fix the rest of the first column of subforums to be with the first one on the list. I do understand that the ficon is in the way.
robbie you can try to edit the template forumbit_depth2_form and add the code below to the tag a.
style="display: inline-block"
<div class="forumbit-row">
  <span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span>
  <div class="forumbit-content">
    <strong><a href="{$forum_url}">{$forum['icon']}{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
  </div>
  <div class="forumbit-lastpost hidden-xs">{$lastpost}</div>
</div>

Where do I add it?
change
<a href="{$forum_url}">
with:
<a href="{$forum_url}" style="display: inline-block">
Thank you so much!