Essential Grid / Fade animation question

Hi there,

I’m building a staging site here: https://tablebudapest.com/home-new/

Question is: near the middle of the page I’m using EG - with the fade animation. I quite like it, but I would like to slightly mold the animation so the cover overlay does not fully disappear, as right now when you hover over the image the text becomes barely readable. How can I achieve this?

Thanks!

Hi There,

Please try adding this custom CSS under Theme Options > CSS:

body .esg-entry-cover:hover .esg-overlay {
    opacity: 0.6 !important;
    visibility: visible !important;
}

For more information about the opacity CSS attribute, please take a look at this:

https://www.w3schools.com/css/css_image_transparency.asp

Regards!

Hi there,

That partially fixed the animation, but now it kind of looks like it’s glitching. Could you have a look?

https://tablebudapest.com/home-new/

Thanks!

It looks like a timing mismatch of the effects from the custom code and the animation of the grid. Please try adding this code to alleviate the “glitchiness”.

body .esg-entry-cover .esg-overlay {
	transition: all 0.5s;
}

Hope that helps.

Thanks a lot! Learned something new today :slight_smile:

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.