Add an online status for the bot. This could be a small green dot maybe flashing.
here are some examples
or like chatting with text online
Add an online status for the bot. This could be a small green dot maybe flashing.
here are some examples
Hi @Sina
Thanks a lot for the idea! Let’s see if it gets traction with others
Hey there, @Sina
Our devs shared a custom solution for this case:
[class*="window__HeaderContainer-sc"]:before {
content: "";
display: block;
width: 8px;
height: 8px;
border-radius: 10px;
background-color: #0f0;
position: absolute;
left: 47px;
bottom: 6px;
z-index: 999;
border: 2px solid rgba(162, 51, 5, 0.75);
}
[class*="window__HeaderContainer-sc"]
[class*="window-header__Title-sc"]:after {
content: "Online";
display: block;
font-size: 10px;
color: #fff;
}
This code should be added to the Custom CSS field on the General tab of your widget’s settings
Hi @Max
wow, thats great and works fine !