• tm2

    (@tahirahmitchell)


    Hello,

    I’m wondering how to get rid of the image hover animation for this theme?

    Thanks.

    -T

Viewing 1 replies (of 1 total)
  • Theme Author Atanas Yonkov

    (@nravota12)

    Hi tm2,

    You can remove the hover effects on the blog entries with the following css code:

    /* Remove plus icon on hover */
    .blog-entry::before {
    display: none;
    }
    /* Remove box shadow on hover */
    body .blog-entries .blog-entry:focus, body .blog-entries .blog-entry:hover {
        top: 0;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    /* Remove opacity on hover */
    .blog-entries .blog-entry:hover img {
        opacity: 1 !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Image Hover Animation’ is closed to new replies.