Shape 5

Wordpress Club Themes => Big Picture - Club => : diermava82 June 05, 2018, 04:58:22 PM



: Movement Effect Image
: diermava82 June 05, 2018, 04:58:22 PM
Hello,

I would like to know how to disable the effect of movement in the photo when I move the mouse cursor over the image in the Bottom Row 1.1 section.

The site is www.epithink.com in the section "EQUIPO DE TRABAJO"

Thank you for your help.

Diego


: Re: Movement Effect Image
: Tristan Rineer June 06, 2018, 10:50:46 AM
That's a CSS effect.  I'm not sure exactly where it's located in the code, but I'll forward your post to the designers and see what information they can provide.



: Re: Movement Effect Image
: Tristan Rineer June 07, 2018, 09:25:59 AM
Here's the answer I got:

It's in editor.css:

 
:
.doctor_image:hover img {
-ms-transform: rotate(4deg) scale(1.1);
-webkit-transform: rotate(4deg) scale(1.1);
transform: rotate(4deg) scale(1.1);
-o-transform: rotate(4deg) scale(1.1);
-webkit-transition: all 400ms ease-out;
-moz-transition: all 400ms ease-out;
-o-transition: all 400ms ease-out;
transition: all 400ms ease-out;
}

 

You'll just need to find that code and change/remove it to fit your needs.