Joey
(@leglesslizard)
Hey,
Looking at the link provided it appears the class that needs changing is bgimage
Within your css file you should be able to alter the background like so:
.bgimage {
background-image: url('http://www.mcaftercare.org/wp-content/uploads/2018/05/my_new_background_image.png');
}
It appears all of these images are in the same place so if that doesn’t work you can try being more specific like this:
.jcyclemain .bgimage {
background-image: url('http://www.mcaftercare.org/wp-content/uploads/2018/05/my_new_background_image.png');
}
Or as a last resort, forcing your style to override all others like so:
.bgimage {
background-image: url('http://www.mcaftercare.org/wp-content/uploads/2018/05/my_new_background_image.png') !important;
}
Obviously, replacing the path to match the path of your background image!
This can be done in your theme’s style.css (preferably your child theme’s style.css as this change will be lost if you update your theme otherwise! See https://codex.wordpress.org/Child_Themes for more info). Or if your theme offers a way to add additional css then you can add it there.
Hope that helps!
Kind regards,
Joey