Turn off the zoom effect on the lead image?

March 2014 WordPress Theme
GK User
Wed Mar 11, 2015 2:11 pm
Hi there, on my homepage here and other posts: http://www.jamjosandbox.com/mag/ the lead image has this zoom in type effect on it which I am sure many find nice. I will not have the most amazing images on my website so I need to deactivate this zooming effect and essentially have no effect at all if possible.

Thanks,
James
User avatar
Expert Boarder

GK User
Wed Mar 11, 2015 4:52 pm
Hi,

Try to add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend)

Code: Select all
.gk-nsp-art .gk-nsp-image:hover {
   -webkit-transform: none;
   -moz-transform: none;
   -ms-transform: none;
   -o-transform: none;
   transform: none;
}
User avatar
Moderator

GK User
Wed Mar 11, 2015 5:14 pm
Thanks worked great
User avatar
Expert Boarder

GK User
Wed Mar 18, 2015 9:37 am
Sorry to open this ticket up again, but the zoom effect still works on the single posts pages like this one http://www.jamjosandbox.com/mag/henri-h ... s-digital/ do you have a piece of css that could deactivate this zoom across the entire website? Thanks for your time.
User avatar
Expert Boarder

GK User
Thu Mar 19, 2015 11:03 am
Try to add also this code:
Code: Select all
article figure.featured-image:hover img {
   -webkit-transform: none;
   -moz-transform: none;
   -ms-transform: none;
   -o-transform: none;
   transform: none;
}
User avatar
Moderator

GK User
Thu Mar 19, 2015 12:24 pm
Thank you that seemed to do the trick here. Appreciate that.
User avatar
Expert Boarder

GK User
Tue Mar 24, 2015 12:48 pm
Sorry to have to bring this up again but if you look at my site here: http://www.jamjosandbox.com/mag you can see on the right hand side that there is the Tab widget and again the zoom effect appears here I would like to turn it off? Likewise on the footer area of my site you can see the Video section and again there is a zoom effect here. Also in the mainbody section you can see the News Show Pro has 3 smaller thumbnails and there is a zoom effect here.

So in these 3 places it would be great to again get some css to switch this effect off. Thanks
User avatar
Expert Boarder

GK User
Tue Mar 24, 2015 1:55 pm
No problem, try to add also this code:
Code: Select all
.gk-nsp-links .gk-image-link:hover img,
.gk-nsp-video_list .gk-nsp-image-wrap:hover img {
   -webkit-transform: none;
   -moz-transform: none;
   -ms-transform: none;
   -o-transform: none;
   transform: none;
}
User avatar
Moderator


cron