Changing background color depending on parent page?

If your theme is using the body_class(); function then you can target pages via CSS.

If you have parent page with the ID of 2 and the background you wanted to change was the .content div, you would simply use :


.parent-pageid-2 .content {
background: green;
}

Or something similar to that effect. This would work for as many child pages you have.