delinea
Hi,
You can try this tweak:
1. Go to file: root/templates/ja_allure/tpls/blocks/mainnav.php
2. Change:
<nav id="t3-mainnav" class="wrap navbar navbar-default t3-mainnav <?php if ($this->countModules('head-search')) echo 'has-search'; ?> <?php if ($this->getParam('navigation_collapse_enable', 1) && $this->getParam('responsive', 1)) echo 'has-collapse'; ?> <?php if ($this->getParam('addon_offcanvas_enable')) echo 'has-offcanvas'; ?>">
to:
<nav id="t3-mainnav" class="wrap navbar navbar-default t3-mainnav <?php if ($this->countModules('head-search')) echo 'has-search'; ?> <?php if ($this->getParam('navigation_collapse_enable', 1) && $this->getParam('responsive', 1)) echo 'has-collapse'; ?> <?php if ($this->getParam('addon_offcanvas_enable')) echo 'has-offcanvas'; ?>" data-spy="affix" data-offset-top="52">
3. Create this 'custom.css' file (if it doesn't exist now): root/templates/ja_allure/css/custom.css
4. Put this custom CSS code:
.t3-mainnav.affix {
position: fixed;
top: 0;
width: 100%;
}
Regards