> For the complete documentation index, see [llms.txt](https://docs.cremawork.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cremawork.com/v-3/mui/navigation-style.md).

# Navigation Style

We have included eleven navigation styles in the Crema. You can choose the Navigation style according to your choice and requirement by following under-written steps.

**Changing Navigation Style in run time:-**

Click on the settings button on the right corner of the screen just below the notification icon, a drawer will open in which you will find navigation styles option and from there, you can navigation style of your choice.

**Changing Navigation Style in development mode (setting default Navigation Style):-**

To set the default Navigation Style, go to the src/@crema/utility/AppContextProvider/defaultConfig.js file.

In this file, you will find a property named '**navStyle**' inside the defaultConfig object which accepts eleven values. You need to set the value of '**navStyle**' according to your choice. You can achive it like below.

{% code title="src/@crema/utility/AppContextProvider/defaultConfig.js" %}

```javascript
const defaultConfig = {
  ...
  navStyle: NavStyle.DEFAULT, //Chnage this according our requirement 
  ...
};

######## NavStyle(src/shared/constants/AppEnums.js) ##########

export const NavStyle = {
  DEFAULT: 'default',
  BIT_BUCKET: 'bit_bucket',
  STANDARD: 'standard',
  DRAWER: 'drawer',
  MINI: 'mini',
  MINI_SIDEBAR_TOGGLE: 'mini-sidebar-toggle',
  HEADER_USER: 'user-header',
  HEADER_USER_MINI: 'user-mini-header',
  H_DEFAULT: 'h-default',
  HOR_HEADER_FIXED: 'hor-header-fixed',
  HOR_DARK_LAYOUT: 'hor-dark-layout',
};
```

{% endcode %}

Layouts and their schematic designs are as follows:-

1\. Default Layout          &#x20;

&#x20;                                 ![](/files/LkIHTfnmGSnSyCA0Pqm9)

&#x20;2\. Standard Layout         &#x20;

&#x20;                                 ![](/files/2DJNh4lpOZEyGsu3Ht7F)

3\. Mini Layout                    &#x20;

&#x20;                                 ![](/files/4Thi1aS6BcOlTltzWSRX)

4\. Drawer Layout      &#x20;

&#x20;                                 ![](/files/cJOJuocCsTHSxmwycR3v)

5\. Bit Bucket Layout&#x20;

&#x20;                                 ![](/files/t7L1P0ns2SXw7Ne6sZR9)

6\. Horizontal Default Layout

&#x20;                                 ![](/files/J5OKMa4kj3TTnmWcVa2A)

7\. Horizontal Light Navigation Layout

&#x20;                                ![](/files/SiTN8lawl6bVU18YJ9xL)

8\. Horizontal Dark Navigation Layout

&#x20;                                ![](/files/MiunGd7WPY9M4vxYzGnW)

9\. Mini Sidebar Toggle          &#x20;

&#x20;                                 ![](/files/cmRrHCw4t3ZvPQII8mx4)

&#x20;10\. Header User

&#x20;                                 ![](/files/Sl7oEOxNmYcN1tGgq2dm)

11\. Header User Mini

&#x20;                                 ![](/files/QfychRMH1dtkb1SWq6pl)
