hi there
the current gk-5 that is used within storebox, has this animation, when going to the next products: zoom in/out. can this be changed into a scrolling overview? or just a normal fade in/out
http://www.foodgenique.nl/
.gkNspPM-ProductGallery .gkImagesWrapper > div {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-ms-transition: opacity 1s ease-in-out;
-o-transition: opacity 1s ease-in-out;
transition: opacity 1s ease-in-out;
opacity: 0;
}
.gkNspPM-ProductGallery .gkImagesWrapper > div.show {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
opacity: 1;
}