Changing look-and-feel using Custom CSS
Steps to add your Custom CSS
Add your Custom CSS and save.
Examples of Custom CSS change
1. Changing Bot's Text
To change bot or agent's text, modify classes ".agent .iticks-message-text "
For example - To change the bot's text color to blue and capitalize all words, we can use this custom CSS.
Copy .agent .iticks-message-text {
color: blue;
text-transform: uppercase;
}
To change the submit button of the Form node, modify class ".it-button "
For example - To change the background and text color of Submit button, we can use this custom CSS.
Copy .it-button {
background: burlywood;
border: burlywood;
color: black;
}
From
to
To change the buttons of the QuickReply node, modify class ".qrnode "
For example - To change the background and text color of the QuickReply node's button, we can use this custom CSS.
Copy .qrnode {
background: chartreuse;
border: 1px solid black;
color: black;
}
From
to