I´ve got the blendmode to work on the background image however I'd like to have a more transparent image. Is there a way (beside lighten the BG image-itself which will cause a different "blend") to give opacity to the image?
I´ve added the code here.
body{
margin:0;
padding:0;
font-family: 'Roboto', sans-serif;
background-blend-mode: overlay;
background-image: url(http://mortenhjort.dk/bglow.jpg), linear-gradient(to left top, rgba(55, 236, 186, .5) 0%, rgba(114, 175, 211, .5) 100%);
background-size: cover;
background-position: center center;
height: 100vh;
width: 100vw;
}