Reply To: Delete grey filter from home full screen slider

#22534
TomPlum
Participant

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 πŸ™‚