Topic: Problem with header
I started to edit the header to fit my site.
And in header.php i wanted to add:
// START SUBST - {include.login.php}
$tpl_main = str_replace('{include.login.php}', include('../include.login.php'), $tpl_main);
// END SUBST - {include.login.php}
But all html code in include.login.php was included before <html> ...
How can I fix it? Where should I put my code in header.php?
// ToTe