> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/methods/changetoolbarposition.md).

# changeToolbarPosition()

Changes the position of the toolbar - **left**, **bottom** or **right**

```javascript
//Places the toolbar at the left side of the page
sambaFrame.changeToolbarPosition('left');

//Places the toolbar at the bottom of the page
sambaFrame.changeToolbarPosition('bottom');

//Places the toolbar at the right side of the page
sambaFrame.changeToolbarPosition('right');
```

**Sample use cases**:&#x20;

* You may want to control the toolbar position dynamically during the conference

{% hint style="info" %}
**showToolbar** is often used in conjunction with the [hideToolbar](/reference/sdk/methods/hidetoolbar.md) method.
{% endhint %}
