Documentation

Sidebar Appearance

  1. sidebar_color
    - For sidebar color there are 4 options given below: Values are in string.
    "sidebar_color": "sidebar-white",
    choices: 'sidebar-white', 'sidebar-dark', 'sidebar-color', 'sidebar-transparent'
    
  2. sidebar_type
    - For sidebar type there are 3 options given below: Values are in array.
    "sidebar_type": "sidebar-mini",
    choices: 'sidebar-hover', 'sidebar-mini', 'sidebar-boxed', 'sidebar-soft'
    
With the use of live customizer

Manual

You can change the sidebar layouts with a single action.
  1. By adding some classes in sidebar parent section. Example is given bellow.
  2. Sidebar Menu Color

    If you wish to change the sidebar Menu color, you can follow the below action.

    For example you have to set sidebar color as dark then you will have to add sidebar-dark class at data-toggle="main-sidebar" of the sidebar.

    - For sidebar color as dark
    <aside class=" ...... sidebar-dark">
    
    - For sidebar color as solid color
    <aside class=" ...... sidebar-color">
        .......
    </aside>
    - For sidebar as Transparent
    <aside class=" ...... sidebar-transparent">
        .......
    </aside>
    - For default sidebar
    <aside class=" ...... sidebar-white">
        .......
    </aside>

    Sidebar Style

    If you wish to change the sidebar style, you can follow the below action.

    For example you have to set sidebar style as mini then you will have to add sidebar-mini class at data-toggle="main-sidebar" of the sidebar.

    - For sidebar style as mini
    <aside class=" ...... sidebar-mini" >
        .......
    </aside>
    - For sidebar style as hover
    <aside class=" ...... sidebar-hover" >
        .......
    </aside>
    - For sidebar style as boxed
    <aside class=" ...... sidebar-boxed" >
        .......
    </aside>
    - For sidebar style as soft effect
    <aside class=" ...... sidebar-soft" >
        .......
    </aside>

    Sidebar Active Menu Style

    If you wish to change the sidebar active menu style, you can follow the below action.

    For example you have to set sidebar active as rounded then you will have to add navs-rounded class at data-toggle="main-sidebar" of the sidebar.

    - For sidebar active as rounded one side
    <aside class=" ...... navs-rounded" >
        .......
    </aside>
    - For sidebar active as rounded all
    <aside class=" ...... navs-rounded-all" >
        .......
    </aside>
    - For sidebar active as one side pill
    <aside class=" ...... navs-pill" >
        .......
    </aside>
    - For sidebar active as pill all
    <aside class=" ...... navs-pill-all" >
        .......
    </aside>
    - For sidebar active as full width
    <aside class=" ...... navs-full-width" >
        .......
    </aside>