0
Answered

disable zoomeffect

nguwebwp 3 years ago updated 3 years ago 4

How to disable the 'zoom'effect  while hovering images, and how to disable the dark color while hovering?

+1
Will be answered

Hello,

It can be done with custom CSS. 

Provide a link to the page you need help with.


Hello,

Thanks for your fast reply in the first place!

There is no website on the internet. It's on my localhost. Is it possible to share the custom CSS then I can add it myself?

+1
Answered

You can disable zoom effect from the settings.

To change background hover opacity, add the code below and change the last argument (0.4) to 0.1 or 0.2. To completely remove, use 0.

https://anwppro.userecho.com/en/knowledge-bases/2/articles/1-how-to-add-custom-css

.anwp-pg-wrap .anwp-pg-post-teaser:not(.anwp-pg-post-teaser--inner-cover-link):hover .anwp-pg-post-teaser__thumbnail-bg {
    background: rgba(0,0,0,0.4) !important;
}

Thank you Andrei!