Description

Default horizontal navigation type is static navigation. Horizontal fixed navigation menu set to be fix on scroll of container section.

CSS Classes

This table contains all classes related to the horizontal fixed navigation option.

All these options can be set via following classes:

Classes Description
.navbar-fixed To create horizontal fixed navigation, you need to add .navbar-fixed class in navigation <div> tag. Refer HTML markup line no 12.

HTML Markup

This section contains HTML Markup to create horizontal fixed navigation. It define where to add css classes to make horizontal fixed navigation.

  • Line no 12: Contain the .navbar-fixed class to set horizontal navigation fixed.
                
                    <!DOCTYPE html>
                      <html lang="en">
                        <head></head>
                        <body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">

                          <!-- fixed-top-->
                          <nav role="navigation" class="header-navbar navbar-expand-sm navbar navbar-with-menu fixed-top navbar-dark navbar-shadow navbar-border">
                              ...
                          </nav>

                          <!-- BEGIN Horizontal Navigation-->
                          <div role="navigation" data-menu="menu-wrapper" class="header-navbar navbar-expand-sm navbar navbar-horizontal navbar-light navbar-fixed"">
                              ...
                          </div>
                          <!-- END Horizontal Navigation-->

                          <!-- BEGIN Content-->
                          <div class="content stack-content container-fluid">
                              <div class="content-wrapper">
                                  <!-- content header-->
                                  <div class="content-header row">
                                      ...
                                  </div>
                                  <!-- content header-->

                                  <!-- content body-->
                                  <div class="content-body">
                                      ...
                                  </div>
                                  <!-- content body-->

                              </div>
                          </div>
                          <!-- END Content-->

                          <!-- START FOOTER DARK-->
                          <footer class="footer footer-dark">
                              ...
                          </footer>
                          <!-- START FOOTER DARK-->

                        </body>
                      </html>
                
                

JADE Configuration

Stack Admin use JADE as template engine to generate pages and whole template quickly using node js, for getting start with JADE usage & template generating process please refer template documentation.

JADE Variables

This table contains required JADE variables to generate horizontal fixed navigation.

Block Variable Datatype Value Description
horizontalMenuConfig menuType string 'navbar-fixed' horizontalMenuConfig block has a menuType variable, it contains navigation specific classes in that you need to set 'navbar-fixed'
JADE Code

Use following JADE code to generate page or template having horizontal fixed navigation.

  • Line no 20-21: Set horizontal fixed navigation class to menuType variable value as 'navbar-fixed' in horizontalMenuConfig block.
  • Line no 27-28: content block has content section html file included include ../contents/horizontal-fixed-navigation.html, which can be customizable on page level.

If you want to use horizontal fixed navigation options on page level you need to define it on page it self. This template has one example jade file for vertical-fixed-navigation.jade, however you can use it on template level but it will generate whole template have horizontal fixed navigation.

              
              block pageVars
                - var pageTitle    = "Fixed Navigation"
                - var pageSubTitle = "Horizontal fixed navigation menu"
                - var description  = "The fixed horizontal navigation options used to make your navigation set to be fixed."
                - var activeMenu   = "horizontal-nav-fixed"

              extends template

              append horizontalMenuConfig
                - var menuType = "navbar-fixed"

              append breadcrumbs
                +breadcrumbs([{url:"index.html",name:"Home"},{url:"#",name:"Navbars"}, {name:"Fixed Navigation"}])

              //- Include page content in page block
              append content
                include ../contents/horizontal-nav-fixed.html

              //- Vendor CSS
              //------------------------------
              //- Add Vendor specific CSS
              append vendorcss

              //- Page CSS
              //------------------------------
              //- Add custom page specific CSS
              append pagecss

              //- Vendor JS
              //------------------------------
              //- Add vendor specific JS
              append vendorjs

              //- Page JS
              //------------------------------
              //- Add custom page specific JS
              append pagejs