Hi,
Im using a Partner Logo carousel slider.
I would like to have a default dark overlay, then when we hover the overlay disappears.
I’ve also noticed the buttons on the slider are cropped off.
Please assist with CSS snippet.
Thank you
Hey AddonDigital,
Thank you for the inquiry.
You can use this css code to apply a default overlay to the slider items. The overlay will disappear or fade out on hover.
#top .avia-logo-element-container .slide-entry:after {
content: '';
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0,0,0,0.5);
visibility: visible;
transition: all 0.5s;
}
#top .avia-logo-element-container .slide-entry:hover:after {
background: rgba(0,0,0,0);
}
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
Ismael