Whitelabel
Remove RKT branding and inject custom CSS into your chat widget
Whitelabel
Remove the "Powered by" footer and customize the widget's appearance with your own CSS.
Remove Branding
Toggle Remove branding in your chatbot's AI settings in the dashboard, or set it via the dashboard API:
PUT /api/chatbot/{chatbotId}
Content-Type: application/json
{
"removeBranding": true
}The "Powered by" footer disappears from the chat widget.
Custom CSS
Inject custom CSS to match your brand:
PUT /api/chatbot/{chatbotId}
Content-Type: application/json
{
"customCss": "textarea { font-family: 'Inter', sans-serif; }"
}The CSS is injected as a <style> tag inside the widget iframe. The widget
is styled with utility classes rather than stable semantic class names, so
target elements (button, textarea, header, …) or inspect the widget
DOM in your browser's dev tools to find the right selectors for your
customization.
Last updated on