Option to embed the chat widget in a container to make it full width
complete
Alexander Wijninga
complete
Charl Haas
in progress
Charl Haas
It is possible to embed the chat widget into a container. There is some CSS adjustment needed.
You can achieve this by setting the position in the settings to be aligned to the left and inserting this code snippet into the page, this is an example, note that this would require some tweaking to achieve the desired outcome:
.watermelon-widget-wrapper {
left: calc(50vw - 375px) !important;
width: 750px !important;
}
The following option can be used to have the Chat widget open:
window.watermelonWidget.openWidget()
P
Paul Haller
Charl Haas
Could you provide a full example script?