How to change this(active speaker) border BLUE color to RED color?

Hello,

I think the feature to know who the speaker is now.

It’s a more necessary and good feature when many people are join and talking.

My requirement is to change this color to “RED” corlor.

Can someone help me how to change?

Thanks

Hi @charlie.woo

I changed the color by adding following section into a style section in the welcomePageAdditionalContent.html. you have to add the style section to get it to work.

   span .jss25 .active-speaker-indicator {
        box-shadow: inset 0px 0px 0px 4px green !important;
   }

You need to add the span to get a higher priority because the default is already !important.

green needs to be changed to red or any hex color code.

1 Like

When you want to change the audio indication, add this in your addtional content

   span .audiodot-top:after {
        background:green  !important
   }

   span .audiodot-middle:after {
        background:green  !important
   }

   span .audiodot-bottom:after {
        background:green !important
   }

1 Like