XF 2.2 how to make the node blocks wider

It's been so long since I did any work with XenForo that I'm not sure if this is part of your style, something custom or a Xenforo default.

But, change max_width to 850px

Code:
.block--category .block-container .block-body {
    list-style: none;
    margin: 0;
    margin-top: 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    max-width: 732px;
}
 
It's been so long since I did any work with XenForo that I'm not sure if this is part of your style, something custom or a Xenforo default.

But, change max_width to 850px

Code:
.block--category .block-container .block-body {
    list-style: none;
    margin: 0;
    margin-top: 0px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    max-width: 732px;
}
Legend! thank you @Snog
 
Top Bottom