Remove CTA Button Text Label on Mobile View
If you want to remove the text label of Qiscus CTA Widget Button, you can do that by toggling the text option on integration page of multichannel dashboard as seen in this screenshot.
But unfortunately it'll affect both web and mobile view. If you want to remove the label only on mobile view you can do that by using CSS as described on this video tutorial.
https://scrimba.com/c/cmdKnkAd
Or if you're in a hurry just copy and paste this code snippet:
<style>
@media (max-width:600px) {
.qcw-cs-trigger-button div, .qcw-trigger-btn div {
display: none;
}
}
</style>