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.

Is this possible to attach the background image to a div instead of body?

By default, WordPress uses the _custom_background_cb() function to create the style you show in your question. You can use a function of your own by adding it to the add_theme_support() in your theme. add_theme_support( ‘custom-background’, array( ‘wp-head-callback’ => ‘wpse_113346_custom_background_cb’ ) ); Initially, you can use the guts of the _custom_background_cb() function for your own function: … Read more

Change background color with a dominant from picture

You can use a jQuery plugin called Color Thief. Files needed: jquery.js (is included in WordPress) quantize.js (download from color-thief github page) color-thief.js (download from color-thief github page) WordPress setup: Open functions.php (located in your theme’s folder) and add the code below to load the files in WordPress. In this case I placed all files … Read more