Lack of interest Align Subforums

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

javakhir

Well-known member
Node/forum list > Sub-forums display style: > Listed below node

is that possible to align subforums icons?
 

Attachments

  • subforums.webp
    subforums.webp
    45.7 KB · Views: 25
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
Try this in your extra.less template, maybe this code still works...
Less:
.node-subNodeFlatList {
    >li {
        display: inline-block;
        margin-right: 0;
        float: left;
        width: 30%;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        white-space: nowrap;
    }
}
 
Code:
.node-subNodeFlatList {
    >li {
        display: table-cell;
        margin-right: 0;
        float: left;
        width: 12%;
        padding: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        white-space: nowrap;
    }
}


I have add padding, for now is good
 
Less:
.node-subNodeFlatList {
    >li {
        display: table-cell;
        margin-right: 0;
        float: left;
        width: 30%;
        padding: 3px;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        white-space: nowrap;
    }
}

this does not cuts the subforum titles
 
Back
Top Bottom