document.addEventListener('DOMContentLoaded', function() {
var bg = window.getComputedStyle(document.body).backgroundImage;
if (bg && bg !== 'none') {
var div = document.createElement('div');
div.id = 'bg-fix';
div.style.backgroundImage = bg;
document.body.style.setProperty('background-image', 'none', 'important');
document.body.prepend(div);
}
});