From the SalesIQ dashboard, when you navigate to Settings > Brands > Personalization, you will have plenty of customization options for your SalesIQ chat widget and window without touching a line of code. If you are a developer, however, you might prefer to write your own CSS instead of using our custom design controls. In this case, you can upload your Custom CSS file in the brand settings. From your SalesIQ dashboard, navigate to Settings > Brands > Select the brand > Personalization > Chat Window > Upload Custom CSS > Select "New" and upload the CSS file. It will apply to your chat window.
Here, we have broken down all of the structural elements of the module and given you the field names and their CSS. Using which, you can apply CSS to individual parts of the module. For example, you could apply custom CSS directly to a header, or create your own footer in the Chat window using this CSS.
Homepage
You can change the homepage color by adding a picture or patterns.
Example

Conversation page
You can default picture of conversation page.
Example
- .widget_offline, .widget_online {
- width: 360px;
- height: 260px;
- background-image: url(https://img.freepik.com/premium-vector/free-shipping-all-orders-tag-banner-design-template-store-marketing-background-modern-graphic_624773-45.jpg);
- background-repeat: no-repeat;
- background-size: cover;
- }
You can change the look and feel of the chat window header.
Example:
- .siqcw-header {
- --header-height: 100px !important;
- }


Company Logo
You can use your company logo in the chat window header using this CSS. You can also customize the height and width of the logo to suit the chat window.
Example:
- .embed-prof-cont {
- border-radius: 15px !important;
- }

Chat attender name
You can change the display, font and color of the Chat Attender name using this CSS.
Example:
- [data-zsqa="header_title"] {
- color: #eba845 !important;
- }

Chat attender description
You can change the display, font and color of the chat attender description using this CSS.
Example:
- [data-zsqa="header_desc"] {
- color: #eba845 !important;
- }
Chat window - closing icon
You can change the look and feel of the chat window closing icon using this CSS.
Example:
- .chat-win-close:before {
- color: #eba845 !important;
- }


You can change the style, appearance, color of the chat window footer using this CSS.
Example:
- .footer-tab {
- background-color: #eba845 !important;
- }
You can customize the message sending button according to your website design and needs using this CSS.
Example:
- .siqico-send {
- background-color: #eba845 !important;
- }
