Do you have any experience with html and css? Otherwise I suggest to get in touch with a developer.
The option what you want is just adding a background image and set it to background-attachement: fixed.
CSS for it will look like this:
.section{
/* Setting the background image */
background: no-repeat center center url('image.jpg');
/* Setting the background image to fixed */
background-attachment: fixed;
}
I may have sorted the width now thanks to your help! I don’t suppose you know how to add a colour overlay to the image as well? I’ve tried stackoverflow but the options don’t seem to be working.
.main-content{
/* Setting the background image */
background: no-repeat center center url(“https://7062255.fs1.hubspotusercontent-na1.net/hubfs/7062255/GA%20BG.jpg”);
background-size: cover;
/* Setting the background image to fixed */
background-attachment: fixed;
}