> For the complete documentation index, see [llms.txt](https://docs.checklist.getalvis.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.checklist.getalvis.com/customize-checklist-location.md).

# Customize checklist location

If you want the checklist launcher to show at different locations other than the preset locations we have, you can add CSS style to do it.

For example, here's the CSS style code to show the launcher at the top right position:

```css
#alvis-nbcl-launcher { 
  top: 60px !important; 
  bottom: auto !important; 
  right: 10px !important; 
}
```

```css
#alvis-nbcl-container.alvis-nbcl-container--open #alvis-nbcl-wdt { 
  right: 10px !important; 
  z-index: 2147483600; 
}
```

You can tweak this code to suit your need.
