Home Forums Basel support forum Turn off image effect on blog

Turn off image effect on blog

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #8346

    Stitch Gallery One
    Participant

    Is there a way to turn off the image zooming effect on the default style of the blog? Would just like it be a static image.

    Thanks!

    #8352

    Artem Temos
    Keymaster

    Hello,

    Thank you for the question.

    Try to add the following code snippet to the Custom CSS section to disable this effect

    .blog-post-loop:hover>.entry-header .post-img-wrapp>a {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }

    Regards

    #22557

    sarac
    Participant

    This works for me on a single post, but I’m still getting a hover effect on the main blog page. Is there a way to turn that off as well? Thanks!

    #22566

    Artem Temos
    Keymaster

    Hi,

    Use this code snippet also to disable this effect on the blog page too.

    .blog-post-loop:hover>.entry-header .post-img-wrapp>a {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }

    Regards

    #22604

    sarac
    Participant

    Thank you, but this does not appear to be working…

    #22606

    Artem Temos
    Keymaster

    We see that you have added the code with some wrong characters https://gyazo.com/f191e067a0401e6f08c5675b79152184
    Be sure that you paste the same code as we sent you.

    #22609

    sarac
    Participant

    Thank you.

    #22612

    Artem Temos
    Keymaster

    Sorry, try this instead 🙂

    .blog-post-loop:hover>.entry-header .post-img-wrapp>a{
        opacity: 1!important;
        transform: scale(1)!important;
        -webkit-transform: scale(1)!important;
        -moz-transform: scale(1)!important;
        -o-transform: scale(1)!important;
    }
    

    If it will not help, please provide us your admin access so we can check what is wrong.

    #22613

    sarac
    Participant

    Thank you. It appears there may be something else conflicting with the code.

    #22621

    sarac
    Participant

    One other thing…

    #22624

    Artem Temos
    Keymaster

    We can’t log in your admin panel. Please, check the password.

    #22625

    sarac
    Participant

    Resolved!

    #22627

    Artem Temos
    Keymaster

    Great, we are glad that you have found the solution

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