Remove Image Zoom

Home Forums Jevelin Theme Remove Image Zoom

Home Forums Jevelin Theme Remove Image Zoom

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • tmattevc
    Participant

    Does anyone know how to remove the image zoom on recent posts?

     

    I’ve tried adding some custom css but doesn’t seem to be working.

     

    .post-meta-thumb:hover {
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1); }

     

    .blog-style-grid:hover{
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);

    }

     

    This is the URL: http://clayburgcreate.com/cooldavistestsite/

    Hi @tmattevc,

     

    I hope you are well today and thank you for your question.

     

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .sh-recent-posts img.wp-post-image {
        -webkit-transform: none;
        transform: none;
    }

     

    Best regards,
    Shufflehound team

Viewing 2 posts - 1 through 2 (of 2 total)