Appearance
Launcher and widget position
Launcher position
You can position the Ybug launcher button on the bottom-right, bottom-left, middle-right, middle-left or top-middle sides of the page.
The launcher_position attribute supports these values: bottom-right (default), bottom-left, right-middle, left-middle and top-middle.
javascript
window.ybug_settings = {
id: 'XXXXXXXXX',
launcher_position: 'bottom-right' // bottom-left, right-middle, left-middle or top-middle
};Widget position
The Feedback Widget is positioned automatically based on the launcher position. If the launcher is on the left side of the screen, the widget opens on the left as well. If the launcher is set to top-middle, the widget opens in the center.
You can change this default by setting widget_position yourself. Supported values: right, left, center.
javascript
window.ybug_settings = {
id: 'XXXXXXXXX',
widget_position: 'center' // left, center, right
};