Hello. Would be glad if someone could help me out on the following.
I use the a conditional php include to get certain footers for certain sites:
<br />
<?php<br />
if (is_page('Kontakt')) {<br />
include (TEMPLATEPATH . '/footerkontakt.php');<br />
}<br />
elseif (is_front_page()) {<br />
include (TEMPLATEPATH . '/footerhome.php');<br />
}</p>
<p>else{<br />
get_footer();<br />
}<br />
?><br />
It's working fine in all browsers except ie6. Why might that be???
Cheers!!