My header image is big and for want of a better term, loud (nice colors, nice graphic, just a little too over the top for anything but the first page). I found information on how to change the header that says (and if you are the person that wrote this in response to the question on how-to, thank you):
"open your tpl_main_page file
find the mainWrapper div.
Add an if/else statement pointing to another header page.
The first section is the page you want to be different.
If ($this_is_home_page) {
require($template->get_template_dir('tpl_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header.php');
} Else {
require($template->get_template_dir('tpl_header2.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header2.php');
} "
Which all makes sense, mostly.
However, I want to change the header image, not the header, for anything but the first page. That means, if I read this correctly, that I would also need to reference a different .css file for the different header pointed to in the second tpl_header file.
Am I correct in thinking that's what I'd have to do, and if so, is there any reason I couldn't do that? I'd experiment first and ask questions later, but I know how easy it is to muck it up and would like some input first.
Thx!


Reply With Quote

