Hello,
what I'm trying to achieve is to have, at the :hover, the thumbnails overlayed with the basic style color (I'm using Creativity template) instead of having them zooming in and out.
I think that this is the part I have to work on:
.nspArt .nspImageWrapper img {
-webkit-transition: all .18s linear;
-moz-transition: all .18s linear;
-ms-transition: all .18s linear;
-o-transition: all .18s linear;
transition: all .18s linear;
}
.nspArt .nspImageWrapper:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
but I frankly do not get how...
Is someone keen to help?
Thank very much in advance
Matteo