How can I adjust the dimness of my debut hero image using CSS?

The hero image (image with text overlay) I have on my site is darkened by the theme. Any css I could add to remove (or alter) this effect?

Included: the original image, and the image as seen on the site.

Site address: www.evaporust.co.il

Thanks

Good Afternoon,

Add this CSS to the bottom of your stylesheet:

.hero__overlay::before {
    opacity:0 !important;
}

Hope this helps!

-Justin

1 Like

Thanks so much!

1 Like