(Squarespace) Center last image on Mobile when Gallery has 2 Columns of Images

To make last image align center on Mobile.

You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or send me an email.

@media screen and (max-width:767px) {
    .gallery-grid-wrapper figure:last-child {
        position: relative;
        left: calc(~"50% + 0.85vw");
    }
}

Result

You can adjust 0.85vw in the code.

1 Like