We have successfully removed the zoom effect on all of our images except for the related items at the bottom of the articles.
Example here http://www.nwcatholic.org/news/internat ... od-history.
Can you help, thanks.
.itemRelImageWrap:hover img {
-webkit-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
-moz-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
-ms-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
-o-transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
}
/* Remove zoom in related items */
.itemRelImageWrap:hover img {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}