function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Gayathri GollaGayathri Golla 

Live Agent Chat window - Font issue when Chat window Opens in Mobile

Hi All,

I am currently working on LIVE AGENT and we have sucessfully implementedd it in our sandbox but the problem is the font .The font seems to be alright when i open a chat window  in my desktop but when i open the same chat window in Mobile the font seems to be very small.Is there any way I can overcome this problem so that font should adjust automatically when opened in different environment (either on Desktop or on Mobile).

Thanks for your help in advance

NagaNaga (Salesforce Developers) 
Hi Gayathri,

Each chat message from the client or the operator will either have the CSS Class "client" or "operator". So you can add CSS Styles to those CSS Classes to get the desired results. It would look like the following. 

.client { background: blue; color: white; } 

.operator { background: green; color: white; }

There is a CSS Class for "name" too.You can also add the font in the same way too.

Best Regards
Naga Kiran