> For the complete documentation index, see [llms.txt](https://docs.hello-lisa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hello-lisa.com/developers/widgets/promo-widget/configuration-options/position.md).

# Position

The optional position option allows you to set the position of the Promo widget.

bl — Positioned at the bottom left corner&#x20;

br — Positioned at the bottom right corner&#x20;

tl — Positioned at the top left corner&#x20;

tr — Positioned at the top right corner

It also allows to specify a fixed position be providing an object with a number value for the bottom, left, right and/or top offset to its respective viewport edge.

```typescript
const alertConfig: Partial<AlertConfig> = {
  position: {
    bottom: 100,
    right: 100,
  },
};
```
