Having an issue with my CSS. I'm trying to create a scrolling background for the left section of my website.
The RGBA is currently overlapping the entire page, but I only want it to overlap the background image. The same goes for the gridtile (the overlay image).
Is there a way to achieve this?
If not possible with CSS, I'm considering using HTML to create this effect. But I'd like some advice on what's better: CSS or HTML, while ensuring it stays mobile-friendly.
body {
background:linear-gradient( rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75) ),url("https://i.sstatic.net/gP9FG.png") fixed,url("http://placehold.it/180x50") fixed repeat-y;
}