background forum

Modifying the extension for smooth scrolling in all browsers - background forum

Modifying the extension for smooth scrolling in all browsers

by MrGaby » Sat Sep 30, 2017 8:25 am

Hello

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;
}
Replace with:

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;
}
Purge forum cache, and enjoy! ;)
If you like my work, you can support me with a donation. Thanks!
Donate via Paypal
MrGaby
Registered User
Posts: 224
Joined: Sun Apr 02, 2017 8:04 pm

Re: Modifying the extension for smooth scrolling in all brow

by MrGaby » Tue Oct 03, 2017 3:16 pm

First post edited: it is necessary to remove the property background-position: center center; in order not to systematically center the image in the background.
If you like my work, you can support me with a donation. Thanks!
Donate via Paypal
MrGaby
Registered User
Posts: 224
Joined: Sun Apr 02, 2017 8:04 pm