I'm facing a challenge as I try to create a blurry background image within a div for a website being developed for a friend. All of the HTML and CSS code can be found in this Codepen link: here.
div.background{
background: url(http://i.imgur.com/DDqQLdi.png);
opacity: 0.6;
filter:alpha(opacity=60);}
The issue is that the background image only appears on the words, not the entire div as intended.
If it's not clear, my goal is to have the background image inside a div with a blurred effect, followed by another image and text layered on top.
I appreciate any assistance or tips on achieving this desired outcome!
Should the image be placed in the body instead of the background class?