I need some help achieving a 30% opacity for my linear gradient. I've converted my hexadecimal color codes to rgba, set the opacity to 30%, but the whole gradient is not appearing as intended. Instead of a solid gradient over my image, I want the entire gradient itself to have a 30% opacity when placed over the image. Can someone please assist me?
.img-container::after {
content:"";
display:block;
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
background: linear-gradient(to right, rgba(243,104,25,0.3), rgba(0,0,0,0.3));
}