XF 2.3 How to show subcategories 2 columns in XF2.3.x ?

USY

Active member
Hi is there a way to show subcategories 2 columns in XF2.3.x instead of consecutively?
 
In Style properties -> Node/forum list choose this:

1744979274899.webp

For two columns add something like this to extra.less template:
Less:
.node.node--depth2.node--forum .node-subNodeFlatList>li {
    width: 35%;
}

Instead of node--forum use node--category if your node with sub-forums is a category.
 
Back
Top Bottom