I've been attempting to overlay a transparent color on top of a background image. While the background image is displaying correctly, I'm having trouble getting the color to show up.
I noticed that this question has been asked before. I tried implementing the suggested solution in my code below, but it's not working for me.
Any ideas on how I can fix this issue?
body, html {
height: 100%;
margin: 0;
color:white;
background-image: url("../logo/background/1(2).jpg");
background-color: rgba(255,255,255, 0.5);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}