Hi @snivel,
Please open file templates/ja_techzone/tpls/blocks/header.php and look for this line :
<header id="t3-header" class="container t3-header <?php if ($this->getParam('navigation_collapse_enable') && $this->getParam('addon_offcanvas_enable')) : ?>has-collapse<?php endif ?>" data-spy="affix">
update as below :
<header id="t3-header" class="container t3-header <?php if ($this->getParam('navigation_collapse_enable') && $this->getParam('addon_offcanvas_enable')) : ?>has-collapse<?php endif ?>" data-spy="affix" data-offset-top="1">
Next, open file templates/ja_techzone/css/custom.css (if you don’t have this file, create a new one) then add this code :
.t3-header {
top: 0;
position: fixed;
}
.t3-header.affix {
background: #000;
}