XF 2.0 how to put sub-forum vertical ?

AbuGhaith

Well-known member
I hope some one give me the correct code to put sub-forum vertical and organised like this

191722

thank you
 
add this to extra.less template
Code:
.node-subNodeFlatList {
    >li {
        display: inline-block;
        margin-right: 0;
        float: left;
        width: 30%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        white-space: nowrap;
    }
}
 
Back
Top Bottom