Tagged: blog grid
I have add this on Quick CSS
.slide-image {
transition: all 0.5s ease 0s;
}
.slide-image:hover {
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
On blog-grid page, When image on hover, it’s look like
but i want image is not over the size.
I hope it would be look like this.
How to write the css?
Hey Moaaaaya,
Thanks for using Enfold. Try changing your code to this:
.slide-image img {
transition: all 0.5s ease 0s;
}
.slide-image:hover img {
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
Hope this helps :)
Best regards,
Nikko
Magic!
It’s work.
thanks a lot.