XF 2.1 Subforum not showing up!

cb_tree

Member
I'm having an issue with one of my nodes not displaying "subforums". I'm using an option that basically "Shows node stats only on hover". Threads and Messages work atleast.

introductions.webp

What I have in my extra.less

CSS:
.thNodes__nodeList {
    .default-style {
        .node {
            padding: 5px;
        }
        .block-header {
            margin-bottom: 0;
        }
        .node-subNodesFlat {
            display: inline-block !important;
        }
        .node-body {
            display: table;
            border: none;
            outline: 1px solid @xf-borderColor;
        }
        .node-stats {
            display: table-cell;
        }
        @media (max-width: 1000px) {
            .node-stats {
                display: none;
            }
        }
        @media (min-width: 1000px) {
            .node-meta {
                display: none;
            }
        }
        @media (max-width: 650px) {
            .node-extra {
                margin-left: 46px; //width of node-icon
            }
        }
    }
    @media (max-width: 650px) {
        .block-container.default-style .node {
            padding-left: 0;
            .node-extra {
                padding-top: 0;
                width: auto;
            }
        }
    }
}
 
Top Bottom