@MuhammadKaleemRazaSubmitted about 3 years ago
How to overlay a color on an image in a div?
How to overlay a color on an image in a div?
"How to overlay a color on an image in a div?"
I personally used linear-gradient() (you can google it how it works it's pretty simple) This is how i did it: background: linear-gradient(rgba(170, 92, 219, 0.5), rgba(170, 92, 219, 0.5)), url("./images/image-header-desktop.jpg");
It might not be fully right with color but i gave it my best shot