Skip to main content

Basic chat box settings

Learn how to customize your Smartsupp chat box appearance and key settings to match your website and improve visitor engagement.

Once Smartsupp chat is installed on your website, the first thing you'll likely want to do is set up how the chat box looks and behaves. The Smartsupp chat box combines a chat and a contact form in a single widget, so visitors can send messages and — if you enable the contact form — share details like their name and email.

💡 Where to find it: All the options below live in Settings > Chat box in your Smartsupp dashboard.

In this article:


What you can customize

In the chat box appearance settings you can adjust the following so the widget fits your website:

Setting

What it does

Color gradient

Sets the colors of the chat box to match your brand.

Position

Places the chat box on the left or right side of the screen.

General texts

Edits the labels and messages shown in the chat box.

Theme

Switches the overall look of the chat box.


Change the chat box position

You can move the chat button directly from the dashboard — no code required:

  1. Log in to your Smartsupp account.

  2. Go to Settings > Chat box > Appearance (or Position settings).

  3. Adjust the placement — choose the left or right side of the screen, set a vertical offset, and set the spacing from the edges.

  4. Save your changes. The updated position applies to your website automatically.


Advanced: position via the JavaScript API

🟡 Note: Changing the position via API requires the EXPERT package (Legacy: PRO) and developer access to your website's code.

The Smartsupp JavaScript API gives developers more precise control over the chat widget. For example, you can set different positions for desktop and mobile:

<script>
// Desktop position
smartsupp('chat:position', { bottom: 20, right: 20 });

// Mobile override
if (window.innerWidth < 768) {
  smartsupp('chat:position', { bottom: 100, right: 10 });
}
</script>

To implement it:

  1. Open your website's code and locate the Smartsupp installation script.

  2. Paste the snippet above directly below the Smartsupp script.

  3. Adjust the bottom and right values to suit your design for both desktop and mobile.

  4. Save your changes and refresh your website in an incognito or private window to verify the new positions.

💡 Tip: For full control, you can create your own button and manage the chat widget entirely through the JavaScript API.


What's next?

💡 Still need help? If you can't find a setting or something isn't working as expected, contact our support team via chat or email — we're happy to help.

Did this answer your question?