Is there a way to turn off the side turning animation when mouse hovers on a thumbnail? No luck when I tried going to News Show Pro GK5 Module --> Animation --> off for hover and animation.
Thanks in advance!
.gkNspPM-TitleOverlay > figure:hover > img {
-webkit-transform: scale(1.1) rotateZ(-3deg);
-moz-transform: scale(1.1) rotateZ(-3deg);
-ms-transform: scale(1.1) rotateZ(-3deg);
-o-transform: scale(1.1) rotateZ(-3deg);
transform: scale(1.1) rotateZ(-3deg);
}
.nspArt .nspImageWrapper:hover img {
-webkit-transform: scale(1.1) rotateZ(-3deg);
-moz-transform: scale(1.1) rotateZ(-3deg);
-ms-transform: scale(1.1) rotateZ(-3deg);
-o-transform: scale(1.1) rotateZ(-3deg);
transform: scale(1.1) rotateZ(-3deg);
}