dydu documentation
FrenchEnglish
  • A Single Software, various applications
  • First use guide
    • Getting started
    • Create your bot
    • Create your first knowledge
    • Create and publish your chatbot
    • Frequent use cases
    • Best practices
    • Glossary
  • Contents
    • Knowledge
      • Knowledge management
      • Tags management
      • Knowledge types
        • Answer to a question
        • Complementary answer
        • Predefined answer
        • Event-triggered knowledge
        • Slot filling
      • Answers elements
      • Accessibility for bot answers
      • Decision tree
      • Comments
      • Test the bot
      • Qualities alerts
    • Knowledge map
    • Matching groups
    • Global sentences
    • Language / Spaces
    • Context conditions
    • External Contents
    • Gallery
    • Web services
      • Web Services
      • Configuration examples (REST)
      • Configure OIDC on Keycloak for a Web Service
      • Frequently asked questions
    • Advanced
      • Server scripts
      • Predefined answer templates
      • Variables
      • Web services triggers
      • Top knowledge
    • Tools
    • Import/Export of knowledge
  • Learning
    • Dialogs
    • Suggestions
    • Misundestood sentences
  • Analytics
    • Exploitation
      • Important
      • Dialogs
      • Visitors
      • Themes
      • Knowledge
      • Qualification
      • Users feedbacks
      • Clicked links
      • Rewords
      • Performance
      • Other
    • Livechat
      • Dialogs
      • Knowledge
      • Operators
      • Satisfaction
      • Waiting queues
    • Knowledge base
      • Formulations
      • Users
      • Matches
    • Export
    • Configuration
  • Custom analytics
    • Reports
    • Alerts
    • Configuration
      • Reports
      • Exports
      • Predefined sources
      • Alerts
      • Preferences
      • Annex: List of indicators
  • Livechat
    • Enable livechat
    • Knowledge base setup
    • DYDU Livechat
      • Overview of interfaces
        • Operator Interface
        • Manager interface
      • Dydu livechat setup
        • General
        • Competencies
        • Waiting queues
          • General
            • Setting up the waiting queue
          • Competency
            • Setting up the waiting queue by competency
            • Setting up a knowledge base with the waiting queue by competency
        • Operator capactiy
        • Account parameters
    • Genesys Livechat connector
  • Integration
    • FAQ
      • Static FAQ
      • Dynamic FAQ
    • MetaBot
    • Customisation
    • Javascript actions
    • Custom event-triggered rules
    • Channels
      • Dydubox
      • Dydubox advanced
        • Css editor
          • Teaser
            • CSS Teaser Modification
          • Header
            • CSS Header Modification
          • Body
            • CSS Body Modification
        • Custom JS Editor
        • Label management
        • Possible integrations
      • Connector
        • Teams
        • META
          • Messenger
          • Instagram
          • WhatsApp
          • Compatibility of DYDU bot features with META
          • Meta application control
    • LLM - Generative AI (Artificial Intelligence)
    • Integration of a chatbox into a webview
  • Preferences
    • SAML 2
    • OpenID Connect (OIDC)
    • Users and rights
    • Bot
      • General
      • Dialogs
      • Survey
      • URLs
      • Search field
  • Other
    • How does your bot work?
    • Data protection
      • Cookie management policy
    • Console logs
    • Special keywords
    • Technical aspects
      • Hosting
      • Infrastructure
    • Security
      • General information
      • Server usage
      • Open source tools
      • User session expiration
  • Developers
    • API reference
      • Authentication
      • Dialog API
      • Dialogs Export
      • Search field
      • Import Export Bot
      • Import/Export Knowledge Base
      • Server Status API
      • Access to APIS
      • User Management in the BMS
    • Chatbox V5
      • Setup and integration
Powered by GitBook

Tous droits réservés @ 2023 dydu.

On this page

Was this helpful?

  1. Integration
  2. Channels
  3. Dydubox advanced

Css editor

For advanced profiles, it is possible to customize the CSS style of the chatbox directly from this section. Through CSS edit, it is possible to review more details of the visual appearance of the chatbot.

Customize icons

As a Dydubox user, you can personalize the default icons used in the web chatbot by using a CSS override in the CSS editor.

You have 2 options:

  • change a default icon’s color.

  • use a custom icon (that is on the image format hosted on a website).

1. Change a default icon’s color

Steps to follow:

  1. Open your existing web chatbot configuration in Dydubox or create a new one.

  2. Open the CSS editor of your web chatbot.

  3. Paste the following lines of code in your editor:

    .NameOfTheIcon {
    color: HexColorCodeOrColorNameinEnglish;
    }
  • "NameOfTheIcon": here, specify the name of the icon you want to personalize. To get the name, use the inspector tool on your web browser. The name always starts with “icon-chatbox_”.

  • "color": your can either specify the HEX code or the color name in English (red, blue…).

Example:

  1. Click on “apply” to apply changes. You should be able to immediately see the changes in the preview bot.

  2. Publish your changes and voilà.

2. Use a custom icon

Steps to follow:

  1. Open your existing web chatbot configuration in Dydubox or create a new one.

  2. Open the CSS editor of your web chatbot.

  3. Paste the following lines of code in the editor:

.NameOfTheIcon {
 background-position: center center;
 background-size: contain;
 background-image: url(UrloftheCustomIcon);
 width: 24px;
}
.NameOfTheIcon::before{
 display:none;
}
  • “NameOfTheIcon”: specify the name of the icon you want to personalize. To get the name, use the inspector tool on your web browser. The name always starts with “icon-chatbox_”

  • "background-image: url(UrloftheCustomIcon)": paste in the parenthesis the link of your custom icon under an image format. (we recommend the png format for websites.)

Example

  1. Click on “apply” to apply changes. You should be able to immediately see the changes on the preview zone.

  2. Publish your changes and voilà.

Display a contact tab

If you need to display less then the three sections for the contact tab:

PreviousDydubox advancedNextTeaser

Last updated 9 months ago

Was this helpful?