Change link color

Add this code to the Custom CSS field on the Settings tab of your AI Chatbot widget’s settings:

.es-window-container {
  color: red; // Link color
}

.es-window-container a:hover {
  color: red; // Link color on hover
}

.es-window-container a:active {
  color: red; // Link color when clicked
}

.es-window-container a:visited {
  color: red; // Link color once visited
}
5 Likes