Remove animation and notification badge from the chat bubble

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

[class*="AnimationFrame__Frame-sc"] {
  display: none;
}

[class*="bubble-badge__Container-sc"] {
  display: none;
}
2 Likes

looks like this is no longer working, the badge is back.

1 Like

Thanks for bringing this to our attention, @Rev_Devan :+1:

You’re right! The class for the badge element has been changed. Here is an updated code that should work great :slightly_smiling_face:

[class*="AnimationFrame__Frame-sc"] {
  display: none;
}

[class*="bubble-badge__Container-sc"] {
  display: none;
}
1 Like