You will need to edit a theme file, as the background scrolling can’t be changed with custom CSS added to the theme options.
Edit /wp-content/themes/pinpoint/css/custom-styles.css.php and find this line (282):
background: #fff url(<?php echo $body_upload_bg; ?>) repeat center top;
Replace that with:
background-image: url(<?php echo $body_upload_bg; ?>);
background-repeat: no-repeat;
background-size: cover;
background-position: center top;
background-color: #fff;
background-attachment: fixed;
Save the file to server and test again. This will only apply to background images that you upload.
Regards,
————————————————————————————————————
Cosmin
Support Assistant