Tagged: image overlay
I had a previous issue with image overlay sizing here: https://kriesi.at/support/topic/image-overlay-position-for-resized-thumbnails/
And it was fixed with the following code:
.avia_transform a .image-overlay {
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important;
}
On a different page with an image carousel, the image overlay is not covering the entire image.
How can I modify the existing CSS edit above or add another custom CSS to fix this other overlay issue?
Hey nV15OoBtg21iTn5z,
Thank you for the update.
The overlay is set to have a maximum height of 60% relative to the parent container. To override this, please replace the previous modification with the following css code.
.avia_transform a .image-overlay {
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important;
max-height: 100% !important;
}
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
Ismael
Worked perfectly. Thank you!