Disabling hover zoom effect

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sat Nov 16, 2013 1:07 pm
Reply with quote
Report this post
How do i get rid off hovering zoom on the images?
User avatar
Platinum Boarder

GK User
Sat Nov 16, 2013 1:28 pm
Reply with quote
Report this post
Hi,
are you talking about images in K2 items?

Or are you talking about module? If yes which one? Please next time add more details.
User avatar
Platinum Boarder

GK User
Sat Nov 16, 2013 1:36 pm
Reply with quote
Report this post
Probably you talk about this line of css code

Code: Select all
.nspArt img.nspImage:hover {
    -webkit-transform: scale(1.15) rotate(-1.5deg);
    -moz-transform: scale(1.15) rotate(-1.5deg);
    -ms-transform: scale(1.15) rotate(-1.5deg);
    -o-transform: scale(1.15) rotate(-1.5deg);
    transform: scale(1.15) rotate(-1.5deg);
}


from : gk_news\css\gk.stuff.css

If you override this effect using

Code: Select all
.nspArt img.nspImage:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
User avatar
Platinum Boarder


cron