2023-12-22 09:13:53 +01:00
|
|
|
---
|
|
|
|
title: Enable RTL
|
|
|
|
---
|
2022-03-10 14:39:33 +01:00
|
|
|
|
|
|
|
- Head over to the "Theme" tab
|
|
|
|
- Paste the following Custom CSS:
|
|
|
|
|
|
|
|
```css
|
2023-04-11 08:19:42 +02:00
|
|
|
.typebot-container {
|
2022-03-10 14:39:33 +01:00
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
|
|
|
.typebot-avatar-container {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
|
2023-04-11 08:19:42 +02:00
|
|
|
.guest-container {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 50px;
|
2022-03-10 14:39:33 +01:00
|
|
|
}
|
|
|
|
```
|