Hi,
I added custom emoji set on my Discourse system. But emoji size seems small, how i enlarge this a little bit?
Hi,
I added custom emoji set on my Discourse system. But emoji size seems small, how i enlarge this a little bit?
I would add the following customization
img.emoji {
width: 25px;
height: 25px;
}
Thank you @zogstrip It’s a good idea. I added this code on CSS tab but nothing change. What did I do wrong?
Did you enable the customization?
Yes, i think? (Screenshot)
Have you tried refreshing the page and/or clearing your browser’s cache?
Yes, i tried hard refreshing (SHIFT + F5) on Google Chrome.
My bad. You actually need to be more specific. Try with
body img.emoji {
width: 25px;
height: 25px;
}
Note: 100x100 emoji is going to be HUGE.
It works now! Thank you.
I know, 100x100 is huge. I set this value for just tried.
I must use Discourse emoji system more advanced. How i group custom emojies? I have too much custom emoji. Another question: Am i set custom size for different emoji?
There’s no way to group custom emojii.
If you want to set a custom size, you’ll have to match the “title
” attribute with something like
.emoji[title=":over_9000:"] {
width: 9001px;
height: 9001px;
}
Thank you zostrip.