I want to assign a link to most of my slider images (layer slider and easy slider) but when I do the hover overlay becomes too distracting. How can I remove that overlay (just on sliders, not on other images) or adjust it’s transparency?
The first slide on this page will show you what I’m talking about. Just hover over the first slide to see the overly I want to modify:
Hey rlmilton!
Thank you for using the theme.
You can add this on Quick CSS or custom.css if you want to disable the image overlay for full width sliders:
.avia-fullwidth-slider span.image-overlay.overlay-type-extern {
display: none !important;
}
Cheers!
Ismael
Awesome – that worked for the easy slider. Will this also work for the layer slider?
Hey!
Please add following code to Quick CSS as well
.avia-layerslider span.image-overlay { display: none !important; }
Cheers!
Yigit
Can you give us the code to adjust the level of opacity?
I have been trying this but it isnt working:
.avia-slide-wrap:hover .image-overlay {
background: #D50D0D;
opacity: 0.6;
}