Dear all,
would like to disable the hover effect (I already disabled the arrow on linked images by using CSS code found in this forum) and would like to achieve one of the following effects:
1. Resizing of the image when hovering OR
2. Getting darker frame when hovering
Could you please help?
Thank you in advance.
Pede
Hey Pede!
Try adding this code to the Quick CSS:
.entry-content-wrapper img:hover{
box-shadow: 0px 0px 0px 5px gray;
}
Cheers!
Josue
Dear Josue,
thank you for your very fast response. Unfortunately the code given does not work for me, it changes nothing.
Any other idea?
Thank you very much in advance!
Cheers!
Pede
Hi!
Can you post the link to your website and point out the element you would like to make changes on?
Regards,
Yigit
Hi Pede!
Try with this code:
.image-overlay {
background: rgba(0,0,0,0.4) !important;
}
Cheers!
Josue
Try adding this code to the Quick CSS:
.image-overlay {
display: none !important;
}
.grid-image.avia-hover-fx img:hover{
-webkit-transform: scale(1.4);
}
.grid-image.avia-hover-fx img{
-webkit-transition: all linear 0.4s;
}
Cheers!
Josue
Change the code to:
.avia-gallery-thumb img:hover, .grid-image.avia-hover-fx img:hover{
-webkit-transform: scale(1.4);
-moz-transform: scale(1.4);
transform: scale(1.4);
}
.avia-gallery-thumb img, .grid-image.avia-hover-fx img{
-webkit-transition: all linear 0.4s;
-moz-transition: all linear 0.4s;
transition: all linear 0.4s;
}
.avia-gallery-thumb a{
overflow: hidden;
opacity: 1 !important;
}
.image-overlay {
display: none !important;
}
Regards,
Josue
Dear Josue,
that is what I wanted to achieve! Your support is fantastic! Thank you so much!
Cheers!
Pede
You are welcome Pede, always glad to help :)
Regards,
Josue