How to turn off image effects

How to turn off at all image effects like scale, fade, blur, etc.

Hey there,

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*remove transition from hover*/
.newspaper-x-recent-posts > ul > li:hover {
    transition: unset;
    background-size: 100%;
}

Best regards,
Support.

it work only on one block.
i want too turn it off everywhere.

  • zoom
  • fade
  • blur

link to site: http://www.vjschool.ru/

Hello there,

These CSS codes should help:


.newspaper_x_widgets .newspaper-x-blog-post-layout-c .newspaper-x-image {
    pointer-events: none;
}

.newspaper_x_widgets .newspaper-x-blog-post-layout-b .newspaper-x-image {
    pointer-events: none;
}

Best Regards,
Support