Vertical Nav

Description

Chameleon Admin provides flexible navigation component, which allows you to modify navigation colors, appearance of different types of content, components placement etc. This page contain all navigation styling options.

HTML Markup

This section contains HTML Markup to demonstrate navigation styling options. This markup define where to add css classes to customize navigation as per your requirements.

  • Line no 12 (Navigation position options): Contain the .menu-fixed class to set navigation position fixed, here you can use any one class from .menu-fixed & .menu-static.
  • Line no 12 (Navigation color options): Contain the .menu-dark class to set navigation color dark, here you can use any one class from .menu-light & .menu-dark.
  • Line no 12 (Accordion / Collapsible): Default vertical navigation type is accordion navigation. For accordion navigation .menu-accordion class is optional to use, but if you want to make navigation collapsible you need to add .menu-collapsible class.
  • Line no 12: The rest of the navigation classes like .menu-native-scroll, .menu-icon-right, .menu-border & .menu-shadow are optional and cab be used on your custom requirements.
Markup
<!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 navbar-with-menu fixed-top navbar-dark navbar-shadow navbar-border">
        ...
    </nav>

    <!-- BEGIN Navigation-->
    <div class="main-menu menu-light menu-shadow menu-border">
        ...
    </div>
    <!-- END Navigation-->

    <!-- BEGIN Content-->
    <div class="content modern-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>