Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the Livechat bubble position in browser using react-livechat module?

I'm trying to change the bubble position of livechat.

I'm using this module from npm LiveChat for React

like image 472
Panayiotis Georgiou Avatar asked Feb 21 '26 15:02

Panayiotis Georgiou


1 Answers

I believe you do that in the LiveChat account configurations https://www.livechat.com/help/customize-your-chat/#what-options enter image description here You can only move to the right or left though, doing further customization would need some CSS code to override its styles

UPDATE

I checked the livechat official website and assuming they are using their own product, there should be a div with id="chat-widget-container" in your site, you could add a CSS rule to your styles to move that chat widget to the left or right

move it to the right

#chat-widget-container {
  right: 0px;
  left: unset;
}

move it to the left

#chat-widget-container {
  left: 0px;
  right: unset;
}

As this is a hackish solution it could break when they decide to change the container id

like image 85
diedu Avatar answered Feb 23 '26 06:02

diedu