I would like to blue articles and the comment boxes, how I can do this if this could be posaible?
I had found this script:
{{if theme.bonusToggle}}
if (detectDevice() > 25){
// Add blurred elements only on desktop
var addBlurTo = ".ipsBreadcrumb, #header, #userBar, #ipsf_picker, .ipsButtonBar, .ipsfocus_megaFooter, .ipsWidget, .ipsPageHeader, #ipsLayout_footer, {{if theme.simpleTopicLayout}}.cTopic .ipsBox.cPost, {{endif}} .ipsfocus_guestBillboard";
$( addBlurTo ).prepend( "<div class='blur-image-wrap'><div class='blur-image'></div></div>" );
$( ".blur-image-wrap").each(function(){
// Windows offset needs to be different due to scrollbar
if (navigator.userAgent.indexOf('Mac OS X') != -1) {
// Mac
var boxPositionTop = $(this).offset().top - 5;
var boxPositionLeft = $(this).offset().left - 5;
} else {
// PC
var boxPositionTop = $(this).offset().top + 3;
var boxPositionLeft = $(this).offset().left + 3;
}
$(this).css({ "background-position" : "-" + boxPositionLeft + "px -" + boxPositionTop + "px" });
});
}
{{endif}}