In that case you have to use Custom CSS and your CSS skills (basic level) ;]
Example for component area:
#sp-main-body {
background-image: url('your-image.jpg'); /* replace with your image full path */
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover; /* optional: covers full screen */
background-position: center; /* centers the image */
}
for mobile (stuborn iphone) view, I recommend adding also that:
@media screen and (max-width: 680px) {
#sp-main-body {background-size: auto;}
}
or by template options > layout > component