i tried blur and transparant jgrowl notification background, but just transparant works. when blur the content also blur. content mean text notification. i wan't background transparant and blur and not content. THIS jsfiddle
CSS:
.test{
background-color:rgba(102, 204, 153,0.95);
color:#fff;
font-weight:bold;
border:1px #fff solid;
filter: blur(5px) ;
}
JGROWL :
<script type="text/javascript">
$(function() {
$.jGrowl("<p class='upper'><i class='fa fa-exclamation-triangle' aria-hidden='true'></i> <?=$row['NTFY_TTL'];?></p><?=$row['NTFY_DESC'];?><br> <small>Posted <?=$row['BEG_DT'];?></small>", {
theme: 'test',
position: 'top-right',
life: 3000
});
});
</script>