At the moment admin can upload background image from the admin to the each page. So basically page node type has a field called background_image and then I get that image place it to div's background image with CSS.
I also have second content type called car_article. These pages are listed under one of those pages nodes. So basically sitemap looks like this:
Cars (node type = page, parent)
-Audi (node type = car_article, child page)
-BMW (node type = car_article, child page)
-Chevrolet (node type = car_article, child page)
Now what I would need to do is get the background image from the parent page, Cars page in this case. So how can I get field content from parent page. And this would need to work always if page is car_article node type, it would automatically try to load background image from parent page.
Thanks!