Chatbot Code Generator 🛠️
Customize and generate your chatbot embed code
How It Works
- Configure your chat widget using the options below
- Generate the embed code
- Copy and paste it before the </head> tag on your website
- Custom styles will automatically apply to the chat widget
Basic Customization
These settings control the fundamental appearance of your chat widget. All fields are optional - the widget will work with default values if left blank.
The text displayed on the chat trigger button
Title shown in the chat window header
Primary color for the chat interface (buttons, headers)
Chat window width (include units: px, %, etc.)
Chat window height (include units: px, %, etc.)
Advanced Customization
For developers: Add custom CSS to style specific elements of the chat interface. Note: These styles will override default styling.
Paid Account required.
Use valid CSS selectors targeting our chat components (examples below)
📋 Embed Code
Copy this code and paste it just before the closing </head> tag on every page where you want the chat widget to appear.
The chat widget will automatically appear on your site after adding this code. No additional initialization needed!
🎨 CSS Style Examples
Common customization examples - copy these directly into the "Custom CSS Styles" field above:
/* Change bot message background */
.chatbot-message-bot {
background-color: #e0f7fa;
}
/* Change user message text color */
.chatbot-message-user {
color: #333;
}
/* Make chat window rounded */
.chatbot-container {
border-radius: 12px;
}
/* Make font larger */
.chatbot-message {
font-size: 16px;
}
💡 Pro Tip: Start with small changes and test frequently. (You may need to clear your cache).