• Resolved stephenvann

    (@stephenvann)


    Is there a way to remove the dark overlay for the homepage slider images?

    The “Enable/Disable Dark Overlay” in General Settings works for the static background image, but does not seem to work for the Slider images.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @stephenvann,

    Although there is no direct setting is available but you can hide it by using CSS

    .flexslider .slides li:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0);
    }

    Copy and paste it in Appearance -> Customize -> Additional CSS

    Regards

    Thread Starter stephenvann

    (@stephenvann)

    How, where do I add this to my child theme? Thank you!

    Hi @stephenvann

    You can paste it here if you are using the child theme also

    Appearance -> Customize -> Additional CSS

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Gray Overlay on homepage slider images?’ is closed to new replies.