XF 1.2 How to decrease the space between subforum columns?

Alpha1

Well-known member
I have turned the subforum popup off, so that the subforums appear in columns.
How do I decrease the space between the columns?
 
The % changes the number of columns, but not the space inbetween. Maybe its better to increase the right margin, as my main goal is to have 3 columns, all located left of node.last.post
 
Hi Alpha1,

On my forum I tried turning off the "subforum popup off" but the extra line would have resulted in a forum list way too long to suit my needs.

I ended up putting the sub-forums under the forum title, here's an example:

pic001.webp

If you only have a few sub-forums this solution might work for you too. Let me know if you would like an example of the template changes.
 
The % changes the number of columns, but not the space inbetween. Maybe its better to increase the right margin, as my main goal is to have 3 columns, all located left of node.last.post
Add to EXTRA.css:
Code:
.node .subForumList {
margin: 0px 200px 0px 20px !important;
}

.node .subForumList li {
width: 25% !important;
}
Change the margins and width to suit.
 
Top Bottom