> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gleap.io/llms.txt
> Use this file to discover all available pages before exploring further.

# In-app notifications

With Gleap, in-app notifications appear directly within the app when a new message is sent to a customer who has the app open. The same applies to news updates.

We also support push notification. Please see the push notifications documentation for more information on it.

## Disable in-app notifications

The following method allows you to disable the in app notifications.

```js theme={null}
Gleap.setDisableInAppNotifications(true);
```

## Notification container offset

You can adjust the position of the in-app notification container by setting an offset in pixels:

```java theme={null}
Gleap.getInstance().setNotificationContainerOffset(x, y);
```

* **x** – Horizontal offset in pixels (positive values move the container to the right).
* **y** – Vertical offset in pixels (positive values move the container down).
