Trying to solve a problem here.
I have a basic website with a repeating pattern background, and I'm attempting to create a color overlay using multiple backgrounds in CSS. Here's the code I'm using:
html,body {
background:
rgba(200, 54, 54, 0.5),
url(../img/background.png) repeat;
}
But when I implement this code, all I get is a blank white screen. If I switch the background positions and place the image on top, then I can see the image displayed without the color overlay.
Did I overlook something regarding how this should work? Is it possible that it doesn't function properly on the html,body elements?
Any assistance would be greatly valued. Thank you, Nick