(Squarespace) Grayscale to Colored images in Gallery Block

Description

  • Gallery Block (Grid, Carousel, Slideshow, Stacked)
  • Initial: Grayscale Images
  • Hover: Change Grayscale to Colored Images

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

div.gallery-block img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
div.gallery-block img:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0); 
}

1 Like

@tuanphan,

:heart: :heart: :heart: