MyBB Community Forums

Full Version: Two Questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
www.discussionzone.net

1) How do I remove the text next to the ficons that says 'subforums:'?

2) How do I make the subforums go down and not across the page?
1) Forum Bit Templates set > forumbit_subforums

2) add a line break after the language call
<br/>

Rep if worked Smile
(2013-03-12, 05:18 AM)WebDevandPhoto Wrote: [ -> ]1) Forum Bit Templates set > forumbit_subforums

2) add a line break after the language call
<br/>

Rep if worked Smile

Explain a tad more on the first question?

Thanks, repped.
Sure here's standard forumbit_subforums:
<br />{$lang->subforums} {$sub_forums}

change:
{$lang->subforums} 
to your message of choice or just remove it.
{$lang->subforums} in english = Sub Forums:

to make the subforum list vertical, I just realized I don't remember.. because you need to somehow edit {$sub_forums}. One possible solution is wrap it in an class and use javascript to parse the links and stack them vertically... another is possible with CSS alone but not sure how to do that. OR find where those directions for {$sub_forums} are. Searching the MyBB source code offline for $sub_forums might shed some light on it.