To make a conclusion in two or three columns, first of all, we need to enable the change the output of the subsections in the style settings.
And select the item there.
Then, for output in two columns, add to the template -
For output in three columns, add to the template -
If desired, if message statistics are not needed when outputting in three columns, you can hide it for the desired section by adding extra.less to
Where is id4, this is the id of the desired section, respectively replace with your own.
Also, if you want to set the section icon and block with the last message in at the section header level, just add to -
Appearance -> Style properties -> Node/forum list
And select the item there.
Listed below node
Then, for output in two columns, add to the template -
extra.less
.
Less:
.node .node-subNodeFlatList li {
float: left;
margin: 2px 0 2px 2%;
width: 45%;
}
For output in three columns, add to the template -
extra.less
.
Less:
.node .node-subNodeFlatList li {
float: left;
margin: 2px 0 2px 2%;
width: 31%;
}
If desired, if message statistics are not needed when outputting in three columns, you can hide it for the desired section by adding extra.less to
Less:
.node--id4 .node-stats {
display: none;
}
Also, if you want to set the section icon and block with the last message in at the section header level, just add to -
extra.less
Less:
.node-body {
.node-icon,
.node-extra {
vertical-align: top;
}
}