Add more controls for moving the widget on the page

Currently it’s possible to select only bottom right / left position for the floating button. If we need to move it a bit higher on the page. it can be done with the CSS code:

.global-styles,
[class^="Main__Component"] {
bottom: 80px !important;
}

Yet it’d be great if we can control it via the widget settings.

1 Like

Also, we’d like to select position like top right, top left, etc.
It can be achieved by this code:

.global-styles,
[class^="Main__Component"] {
bottom: auto;
top: 10px;
}
.global-styles, .eapp-click-to-call-window-component {
bottom: auto;
top: 300px;
}

Please add such functionality to the widget settings :slight_smile:

1 Like