(Squarespace) How to remove Hover effect on Portfolio Page

To remove Hover effect on Portfolio Page (change image opacity on hover).

You can use this code to Custom CSS box.

a.grid-item .grid-image {
    opacity: 1 !important;
}

To do this on specific Portfolio Page, you can find Page ID.

Then use CSS code like this.

#collection-673e9a14857d4032d3e2f27b a.grid-item .grid-image {
    opacity: 1 !important;
}