CSS Classes

This table contains all classes related to the content detached left sidebar layout. This is a custom layout classes for content detached left sidebar layout page requirements.

All these options can be set via following classes:

Classes Description
content-detached-left-sidebar You can create 3 column detached left layout by adding .content-detached-left-sidebar class in <body> tag.
content-detached In this layout content section is detached from left sidebar, for that .content-detached class needs to add in content wrapper.
content-right In this layout content should be float in right side, so .content-right class needs to add in content wrapper.
sidebar-detached In this layout left sidebar section is detached from content, for that .sidebar-detached class needs to add in sidebar wrapper.
sidebar-left In this layout sidebar should be float in left side, so .sidebar-left class needs to add in sidebar wrapper.

HTML Markup

This section contains HTML Markup to create 3 column detached left sidebar layout. You need to add the content-detached-left-sidebar class in the <body> tag as show in below. This layout has a navigation, content and left detached sidebar sections with common header & footer.

  • Contain the .content-detached and .content-right classes for adjusting detached content section in right side.
  • Contain the .sidebar-detached and .sidebar-left classes for adjusting detached sidebar section in left side.
            
                <!DOCTYPE html>
                  <html lang="en">
                    <head></head>
                    <body data-menu="vertical-menu-modern" class="vertical-layout vertical-menu-modern content-detached-left-sidebar navbar-sticky footer-static menu-expanded">

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

                          <!-- content detached right-->
                          <div class="content-detached content-right">
                              ...
                          </div>
                          <!-- content detached right-->

                          <!-- sidebar detached left-->
                          <div class="sidebar-detached sidebar-left">
                              <div class="sidebar">
                                  ...
                              </div>
                          </div>
                          <!-- sidebar detached left-->
                      </div>
                      <!-- END Content-->

                    </body>
                  </html>