bigdave
Well-Known Member
I'm starting to really despise wordpress for it's never ending intricacies!...
I'm working on a site where the client has requested a specific page has an edge to edge background image. the max-width of the body is 960px so I cant contain the image within body tags but I wondered if php might come o my rescue?
Could I use something along the lines of
if ( is_page( 'nameofpage' ) ) {
get_header( 'nameofpage' );
} else {
get_header();
}
within the page.php file work to call a header containing a dedicated css file including the html background imange requested?
I'm working on a site where the client has requested a specific page has an edge to edge background image. the max-width of the body is 960px so I cant contain the image within body tags but I wondered if php might come o my rescue?
Could I use something along the lines of
if ( is_page( 'nameofpage' ) ) {
get_header( 'nameofpage' );
} else {
get_header();
}
within the page.php file work to call a header containing a dedicated css file including the html background imange requested?