XenForo Remove thread count on forum list

CR LEAKS

Administrators
Joined
Mar 25, 2022
Messages
1,485
Credits
28,051
The code for your extra.less template could look like this:


CSS:
.node-stats {
    dl.pairs.pairs--rows {
        &:first-child {
            display: none !important;
        }
    }
}
.node-meta {
    dl.pairs.pairs--inline {
        &:first-child {
            display: none !important;
        }
    }
}

Or you use the CSS version in your extra.less template, that's up to you:



CSS:
.node-stats dl.pairs.pairs--rows:first-child,
.node-meta dl.pairs.pairs--inline:first-child {
    display: none !important;
}
 
Back
Top Bottom