Hi,
A grey filter appears under my picture on my Home Full screen slider. The grey filter makes a dark picture, not like the original. And I can’t remove it.
If someone has the solution to delete it, thanks
Mary31
Hi Mary,
I’m assuming you’re referring to the filter over the background image in your full screen slider.
There is a CSS rule applied to the image’s <div> that is causing this.
The ‘background: rgba(0, 0, 0, .4);’ rule is the one applying this filter. Removing it or commenting it out of styles.css will disable it.
.background-parallax:after {
content: “”;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .4);
}
That’s what I’ve gathered anyway. It’s a shame this support forum is dead… I need help myself 🙂
Hi TomPlum
Thanks for your help
I try it and it works. The problem is fixed now.
Thank you very much. And like you said, this support forum is dead. Shame !!!!