Elliot Chance
Elliot Chance

Reputation: 5736

Is it possible to place the Intercom Messenger in the bottom left?

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?

Upvotes: 3

Views: 3088

Answers (1)

Nuno Gama Freire
Nuno Gama Freire

Reputation: 161

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

Upvotes: 5

Related Questions