remove blog photo annimation

Discussion in 'ButterBelly WordPress Theme' started by vesity, Aug 9, 2014.

Thread Status:
Not open for further replies.
  1. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Hi. Can you please tell me how to turn off the animation of the photos in the blogs?
    Thank you!
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    To turn off the animation of the photos in the blogs.
    Go to -- Appearance > Theme Option > Styling Option > Custom CSS
    Paste following code in Custom CSS and press Save All Changes button.
    Code:
    .content-bar .post:hover .post_image img {
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
    }
    
    This will solve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    Hi. Thank you, but for some reason this did not work. The images are still automated when hovering over them on the home page.
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Go to -- Appearance > Theme Option > Styling Option > Custom CSS
    Paste following code in Custom CSS and press Save All Changes button.

    Code:
     .feature_blog_content ul li:hover .post_image img {
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
    }
    Thanks & Regards
    Pramod Patel
     
  5. vesity

    vesity Member

    Joined:
    Oct 3, 2013
    Messages:
    241
    Likes Received:
    0
    That did it - thanks!
     
Thread Status:
Not open for further replies.

Share This Page