By default the Intercom Messenger appears at the bottom right of the page. How do I configure it to sit on the bottom left instead?
Asked
Active
Viewed 2,402 times
3
-
Wondering the same thing... – Douglas Ludlow Aug 22 '17 at 14:48
1 Answers
4
You can change the position of the messenger by adding a key : value field to the intercomSettings called 'alignment' : 'left'
example:
window.intercomSettings = {
app_id: "your_app_id",
"alignment": 'left'
};
You can also add paddings. If you need more information go to -> https://docs.intercom.com/faqs-and-troubleshooting/the-intercom-messenger/can-i-move-the-messengers-position-on-my-product-or-site

Nuno Gama Freire
- 121
- 1
- 7
-
3Is there any way to change it programmatically after it's been initialized? For example, a right mounted sidebar that pushes it over as it comes out? – Greg Venech Mar 18 '21 at 19:28