How to change size of thumbnail photos and text in a list

Hi,

we recently updated our site: www.grizzlies.de to X.

We have a couple of player lists, displayed on the team sites, for example:

https://grizzlies.de/herren-1/.

The pics and the text is very tiny. How can I increase the size, both of the pictures and of the text?

Thanks
Alex

Hey Alex,

Thank you for reaching out to us. I see you’re using a third party plugin / script to create player’s table and it’s adding it’s own styling to limit the dimensions. However to fix this, you can add the following code in the Theme Options > CSS:

.sp-player-list .data-name .player-photo, .sp-player-list .data-name .player-flag {
    width: auto !important;
    height: auto !important;
}
.sp-player-list .data-name .player-photo img, .sp-player-list .data-name .player-flag img {
    max-width: 100% !important;
    max-height: 100% !important;
}

Don’t forget to clear all caches including your browser’s cache after adding the code.

Please note that we cannot provide support for third party plugins or scripts as our support policy states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

Thank you for your understanding.

it works, awesome. Thanks for the quick help.

Alex

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.