I wanna use an image on my site as a brackground with a blur filter.
I tried using this in a css file:
.bg-image{
background-image: url("../store/groupLK.jpg");
filter: blur(8px);
-webkit-filter: blur(8px);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
and in the html file:
<head>
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen" />
</head>
<body>
<div class="bg-image">
/* the rest of the code including some other images */
</div>
</body>
And it seems to work but it blurs all of the images that I use as well instead of "groupLK.jpg" only. I also tried using the class bg-image before/after the other pictures but it only appears in that position and not in the rest of the site. Thank you in advance.