I have placed the 'include' in the tpl_header.php file for my template
Correct file
I have tried <?php include 'header.php';?>
INCORRECT php
Rename your html file, mytopheader.php as header.php may conflict
with zencart coding.
Then in tpl_header.php, add following code, marked red
Code:
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>
<?php
include('mytopheader.php');
?>
Your new php file should have css associated with it..
i.e.
Code:
<div id="headerWrapper">
your html/php code here
</div>