Sure :
https://nghapoe.ca/list/lets-zoom-these-images/
Create a page with a Player List, and select Gallery Layout.
SportPress –> Players –> Player List –> choose Gallery
Customizer –> Additional CSS :
.sp-template-gallery .gallery-item img {
max-width: 100%;
transition: all 0.3s;
display: block;
width: 100%;
height: auto;
transform: scale(1);
}
.sp-template-gallery .gallery-item img:hover {
transform: scale(1.1);
}
Or, SportsPress –> Settings –> General –> Custom CSS :
.sp-template-gallery .gallery-item img {
max-width: 100%;
transition: all 0.3s;
display: block;
width: 100%;
height: auto;
transform: scale(1);
}
.sp-template-gallery .gallery-item img:hover {
transform: scale(1.1);
}