To add a download icon on hover gallery image, like this.

#1. First, use this code to Custom CSS
/* gallery download icon */
.download-icon {
position: absolute;
z-index: 999999;
cursor: pointer;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
display: none;
}
figure:hover .download-icon {
display: block;
}
You need to login to see the full content. Or send me an email to [email protected], I will send you code.