I propose the following modification to have a smooth scrolling in webkit-based browsers (Chrome/Chromium/Safari/...) :
In ext/alex75/background/styles/prosilver/theme/background.css, find:
Code: Select all
html, body {
background-size: cover;
background-position: center center;
background-image: url("./background.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
}
Code: Select all
body:before {
content: '';
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
will-change: transform;
z-index: -1;
background-size: cover;
background-image: url("./background.jpg");
background-repeat: no-repeat;
}
body {
position:relative;
z-index: 0;
}