Resource icon

Tiled view of forum statistics

prisnilos

Active member
Pepelniy submitted a new resource:

Tiled view of forum statistics - Making a tile view for the forum statistics widget

First, switch the position of the statistics widget to below / above the list of nodes, since the code is suitable only for such positions.

Add to extra.less

Less:
.block[data-widget-key="forum_overview_forum_statistics"] {
    
    .block-minorHeader {
        display: none;
    }
    
    .block-body.block-row {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        
        &:before {
            display: none;
        }...

Read more about this resource...
 
Has anyone got this to work with 2.3?

Figured this out by editing the "data-widget-key"

Code:
.block[data-widget-key="forum_overview_forum_statistics"]
I have mine set to a different name on it.
 
Last edited:
Back
Top Bottom