Disable Auto-Animation on Blog Posts and Blog List

Professional social WordPress theme with metro design, fully-adjustable grid widget and BuddyPress support.
GK User
Sun Aug 10, 2014 8:26 pm
How do I turn off Auto-Animation on the blog page, for example www.mysite.com/blog as well as on the individual blog posting pages as well? I can see how to do this on the News Show Pro widget, but not on the other places.

Thank you!
User avatar
Senior Boarder

GK User
Mon Aug 11, 2014 7:09 am
Hello,

I'm sorry but your website is not available. Dou you mean animation in the blog single post when your hover the cursor over the image?
User avatar
Moderator

GK User
Mon Aug 18, 2014 9:18 pm
Yes, I would like to remove the animation when you hover on the image on the blog page that displays all the blog posts: http://www.mutlikeme.com/MUTStyled/blog/
As well as single posts: http://www.mutlikeme.com/MUTStyled/string-of-pearls/
Thanks!
User avatar
Senior Boarder

GK User
Tue Aug 19, 2014 6:34 am
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
article figure.featured-image:hover img {
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -ms-transform: scale(1.0);
   -o-transform: scale(1.0);
   transform: scale(1.0);
}
User avatar
Moderator

GK User
Tue Aug 19, 2014 2:30 pm
Works great! Thanks!!
User avatar
Senior Boarder


cron