MyBB Community Forums

Full Version: Is there a plugin that does this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I am trying to make the child forums on my forum all show up instead of it saying "and more" like it shows in the link below

http://prnt.sc/egzadq

So it looks like this:

http://prntscr.com/egzb4a


I am wondering if there is a plugin to achieve this, and if not can someone make one?
(Sorry if this is a default MyBB feature or based on the theme, im new to MyBB haha)
(2017-03-07, 07:12 AM)Sazze Wrote: [ -> ]Check this: https://community.mybb.com/thread-95023-...#pid694787

I appreciate the help but it doesn't seem to be working. Maybe I am doing something wrong? But I followed the directions perfectly and didnt have any issues finding the areas to edit the code.

(2017-03-07, 07:20 AM)Binary Wrote: [ -> ]
(2017-03-07, 07:12 AM)Sazze Wrote: [ -> ]Check this: https://community.mybb.com/thread-95023-...#pid694787

I think I am doing this part wrong:

http://prntscr.com/egzm5w

It says to put that code at the very end, but maybe I am missing something? 

I know the first two steps worked because my forum looks like this:

http://prntscr.com/egzmmm
(2017-03-07, 07:20 AM)Binary Wrote: [ -> ]
(2017-03-07, 07:12 AM)Sazze Wrote: [ -> ]Check this: https://community.mybb.com/thread-95023-...#pid694787

I appreciate the help but it doesn't seem to be working. Maybe I am doing something wrong? But I followed the directions perfectly and didnt have any issues finding the areas to edit the code.

(2017-03-07, 07:20 AM)Binary Wrote: [ -> ]
(2017-03-07, 07:12 AM)Sazze Wrote: [ -> ]Check this: https://community.mybb.com/thread-95023-...#pid694787

I think I am doing this part wrong:

http://prntscr.com/egzm5w

It says to put that code at the very end, but maybe I am missing something? 

I know the first two steps worked because my forum looks like this:

http://prntscr.com/egzmmm

Navigate to settings and find Forum Home Options, there should be another setting in that settings group called Subforums To Show On Index Listing . You should be able to specify how many subforums that should show up until the "and 2 more" shows up.

I have no access to ACP as of now, but it should be right. Let me know.
OMG it looks perfect. thank you that worked and it was exactly where you said. Let me ask though, is there a way to make the icon and text of the sub forums bigger?
^ what is your forum url & which theme you are using ?
(2017-03-07, 10:59 AM).m. Wrote: [ -> ]^ what is your forum url & which theme you are using ?

http://legendforums.net

and the theme is Carbon by Rooloo
^ you can add required font size for .columns li in the global.css of the theme (line 1872)
Quote:font-size: 14px;

increasing icon size could be little complex ! see replies here
(2017-03-07, 12:12 PM).m. Wrote: [ -> ]^ you can add required font size for .columns li in the global.css of the theme (line 1872)
Quote:font-size: 14px;

increasing icon size could be little complex ! see replies here

I am currently using the following code in global.css 

.columns 
{
list-style: none; 
margin: 0; 
padding: 0;
}

.columns li 
{
width: 50%; 
float: left;
}
/** Impromptu End */

And when I add 

.columns font-size: 14px;

It messes up the style of the sub forums, and the size doesn't change  regardless of the size i input. Am I doing something wrong?
^ suggestion is to add font-size: 14px; to the existing .columns li (like below)

.columns li 
{
width: 50%; 
float: left;
font-size: 14px;
}
Pages: 1 2