Buy me a coffee

Zoom linked images on hover

#1. Image Block
Use this to Custom CSS box

div.image-block:has(.sqs-block-image-link) img {
    transition: all .3s;
}
div.image-block:has(.sqs-block-image-link):hover img {
    transform: scale(1.5);
    transition: all .3s;
}

 

Zoom Linked Images On Hover 1 Min

#2. Gallery Block Image
Use this CSS code

div.gallery-block .slide:has(a.image-slide-anchor) img {
    transition: all .3s;
}
div.gallery-block .slide:has(a.image-slide-anchor):hover img {
    transform: scale(1.5);
    transition: all .3s;
}

Zoom Linked Images On Hover 2 Min

#3. Gallery Section Image
Use this CSS code

figure[class*="gallery-"]:has(a) img {
    transition: all .3s;
}
figure[class*="gallery-"]:has(a):hover img {
    transform: scale(1.5);
    transition: all .3s;
}
figure[class*="gallery-"] a {
    overflow: hidden;
}

Zoom Linked Images On Hover 3 Min