Sprony

Customer
I'm not sure if this is a Xenforo question or if it's a template one, but I want to have different icons for the Resource Manager. I have the Evolve theme and it looks like this:

1762606720576.png


I want it to look like this:

1762606757335.png


So instead of round icons, use 200x125 thumbnails. I also don't want my avatar displayed at the icon.
 
We don't touch that area so it's how XenForo serves it by default. The highest image you can make it is 96 by 96 without modifying past the templates or stretching it using CSS which would cause a loss of quality in the image (I think it'd require an add-on).

You can add this to extra.less which should make it 96x96 and not rounded:

Code:
.structItem--resource .structItem-cell.structItem-cell--icon.structItem-cell--iconExpanded {
    width: 100px;
}
.structItem--resource .structItem-cell.structItem-cell--icon.structItem-cell--iconExpanded .avatar:not(.avatar--separated) {
    width: 96px;
    height: 96px;
    border-radius: 0;
}
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back