Hi @phillipjotham,
Sorry that we didn’t identify the issue in the first message. When initially checked on one OS its worked; everything appeared to be working correctly. https://snipboard.io/iwzxLa.jpg.
But after the second message, we looked deeper and found that the issue exists on some systems.
The content added in the “Bottom Content” section under Click to Chat → Greetings is already well-formatted:
<p style="text-align: center"><span style="font-size: 12px">🟢 Online | Privacy policy</span></p>
On some systems, the browser doesn’t use the system font for emoji rendering. Instead, WordPress (or the browser itself) replaces the emoji with an image fallback (from the WordPress CDN like s.w.org), which results in something like this:
<img draggable="false" role="img" class="emoji" alt="🟢" src="https://s.w.org/images/core/emoji/16.0.1/svg/1f7e2.svg">
That image-based emoji may appear larger or misaligned.
To fix this:
Option 1: Add custom CSS
From Click to Chat → Other Settings → Custom CSS and add:
.ht-ctc-chat img.emoji {
width: 12px !important;
height: 12px !important;
vertical-align: middle !important;
}
Option 2: Use Emoji Unicode instead of direct symbol
Replace the symbol with its code: please remove the spaces in between &# 128994;
🟢 &# 128994; Online | Privacy policy
This method avoids browser-based image fallback.
More emoji codes are available here:
https://holithemes.com/plugins/click-to-chat/symbols/
Please try either approach—both should resolve the display issue across all systems.
Thanks again for helping us to identify the issue
Have a nice day!
-
This reply was modified 10 months, 1 week ago by
bhvreddy.