How Can We Help?
How to hide chat buttons?
Here’s how you can hide chat buttons.
1. Hide all buttons
#options { display: none !important; }
2. Hide specific option buttons
Choose the buttons you want to hide. Each of these lines of code
can be copied and pasted individually.
#options #pause { display: none; }
#options #export { display: none; }
#options #popup { display: none; }
#options #sound { display: none; }
#options #opts { display: none; }
#options #logout { display: none; }
To know how to edit web CSS, click this link.