how to remove black overlay from Oria theme
-
Hi,
I’ve be trying for hours, and I don’t know how to remove the black/grey transparent overlay on the big header image in home page : http://sohappy.be/
Is it possible with only add css ?
Thank you !
-
Hi @1creeatif.
It looks like the black overlay is set here:
.site-header::after { background-color: rgba(0, 0, 0, 0.5); }Manually adding the following to your CSS should get rid of it:
.site-header::after { background-color: rgba(0,0,0,0); }Let me know if that takes care of it for you. Have a great day!
-
- The topic ‘how to remove black overlay from Oria theme’ is closed to new replies.