Green dot to show online status

I really recommend adding an option for a Green dot with a potential flash to make it engaging, a lot of people are used to chat’s having this, without it makes it seem dull. Great update nonetheless!

Is there some CSS Code from the devs for this option?

Such as just copying the green dot from “Live Chat” widget.

1 Like

Hi there, @Adore :waving_hand:

Thank you for the feedback!

I’ve moved your suggestion to a separate request. We’ll try to consider it as an option in the settings, especially if more users upvote it :slightly_smiling_face:

As for now, you can add a green dot using this CSS code:

.es-window-header :before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 15px;
  background-color: #0f0;
  position: absolute;
  left: 47px;
  bottom: 6px;
  z-index: 999;
  border: 2px solid rgba(162, 51, 5, 0.75);
}
2 Likes