Change link color in AI Chatbot

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

[class*='window__Body-sc'] a {
  color: red; // Link color
}

[class*='window__Body-sc'] a:hover {
  color: red; // Link color on hover
}

[class*='window__Body-sc'] a:active {
  color: red; // Link color when clicked
}

[class*='window__Body-sc'] a:visited {
  color: red; // Link color once visited
}

Many thanks to Max

4 Likes