Description

Default horizontal navigation start from left side. Horizontal flipped navigation menu option flip your navigation to right side.

CSS Classes

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

All these options can be set via following classes:

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

HTML Markup

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

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

                          <!-- navbar-flipped-top-->
                          <nav role="navigation" class="header-navbar navbar-expand-sm navbar navbar-with-menu navbar-flipped-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-dark navbar-flipped"">
                              ...
                          </div>
                          <!-- END Horizontal Navigation-->

                          <!-- BEGIN Content-->
                          <div class="content app-content">
                              <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 flipped navigation.

Block Variable Datatype Value Description
horizontalMenuConfig menuFlipped boolean true horizontalMenuConfig block has a menuFlipped variable, it contains navigation specific classes in that you need to set true.
JADE Code

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

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

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

              
                block pageVars
                  - var pageTitle    = "Flipped Navigation"
                  - var pageSubTitle = "Horizontal flipped navigation"
                  - var description  = "Horizontal flipped navigation option change the navigation position to right side."
                  - var activeMenu   = "horizontal-nav-flipped"

                extends template

                append horizontalMenuConfig
                  - var menuFlipped = true

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

                //- Include page content in page block
                append content
                  include ../contents/horizontal-nav-flipped.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