Choosing where to display tab / button
- Last updated on April 5, 2018 at 10:42 AM
You can switch the display of the tab between left and right, and either on the wall or the floor of your site on the settings page for your site in your settings page.
If you'd like to be able to change this on a per page basis you can update the following settings when you load the elevio script:
window._elev.on(’load’, function(_elev) {
_elev.setSettings({
docked_position: ’floor’,
side: ’left’,
});
});
The available options are:
docked_position: floor / wall / button
side: left / right
For more information, please see the setSettings documentation