XenForo Want to display subforums in 2 columns

GuDron

Super Moderator
Staff member
Super Moderator
Jan 28, 2020
819
7
268
Language
English

Xenforo 2 displays subforums in 2 column​

Adde bellow code to the extra.less template?

Less:
.node-subNodeFlatList > li
{
    margin-right: 0;
    width: 49%;
}
 
Xenforo 1 displays subforums in 2 column

Adde bellow code to the extra.css template?
Less:
/*sub forums and articles*/
.node-subNodeFlatList
    >li {
        float: left;
        margin-right: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        white-space: nowrap;
        width: 50%;
    }