Multiple Navbars
When there are multiple navbars on the same page, in order for one to push off another, the navbars cannot be siblings in the markup. They must be contained within separate elements.
Important Notes:
If the navbars are siblings, they will overlap each other. In such case, reference sticky offset to avoid overlapping.
Demo
View full page demo
Twig
<section>
{% include '@bolt-components-navbar/navbar.twig' with {
...
} only %}
// Content goes here
</section>
<section>
{% include '@bolt-components-navbar/navbar.twig' with {
...
} only %}
// Content goes here
</section>