How to remove picture scale 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
Tue May 07, 2013 9:15 am
Reply with quote
Report this post
Hello,

maybe I'm stupid but I can't find where is the option to remove the scale effect on picture ...

Do you have a idea to do this ?

Thank in advance for any help.
User avatar
Expert Boarder

GK User
Tue May 07, 2013 9:35 am
Reply with quote
Report this post
Hi,
please go to template.css or gk.stuff.css and find:
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);
}

and remove it. This should stop scale effect.
User avatar
Gold Boarder

GK User
Tue May 07, 2013 11:12 am
Reply with quote
Report this post
Hello,

thank you very much for the tip.
We put this into the override.css file :

Code: Select all
/* image scale effect */
.nspArt img.nspImage:hover {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}
User avatar
Expert Boarder


cron