Delete grey filter from home full screen slider

Viewing 3 posts - 1 through 3 (of 3 total)
  • #22533
    mary31
    Participant

    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

    #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 🙂

    #22535
    mary31
    Participant

    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 !!!!

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.