How to remove custom background?

Inside the theme folder there should be a file called functions.php. Search for the line

add_theme_support( 'custom-background' );

and replace it with

#add_theme_support( 'custom-background' );

which is simply ‘deleting’ calling the function and thus the possibility to specify a custom background in the admin side.