Home › Forums › WoodMart support forum › In place hover animation on gallery images › Reply To: In place hover animation on gallery images
October 22, 2020 at 2:07 pm
#235404

Elise Noromit
Member
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.woodmart-gallery-item {
overflow:hidden;
}
.woodmart-gallery-item img {
transition: all .5s ease;
transform: scale(1);
}
.woodmart-gallery-item:hover img {
transform: scale(1.5);
}
Remove your custom CSS you would get something like this: https://gyazo.com/aab401179538d687e8ec92fc5c92c94f
Best Regards