Hi
Now I understand
Header module position was designed that way. By default header is shown which is taken from article, but You have an option to replace the header with custom html module. If You wish to show something else in this place I'm afraid You will have to create a new module position above this one.
Just edit /layout/default.php and add this:
- Code: Select all
<?php if($this->API->modules('customheader')) : ?>
<div id="gkHeaderMod" class="gk-clearfix">
<jdoc:include type="customheader" name="header" style="none" />
</div>
<?php endif; ?>
above:
- Code: Select all
<?php if($this->API->modules('header') && $item_id != $error_item_id) : ?>
<div id="gkHeaderMod" class="gk-clearfix">
<jdoc:include type="modules" name="header" style="none" />
</div>
<?php endif; ?>
than You will be able to use "customheader" module position.