Emojis in Kategorienamen einfügen

Is it possible to display emojis in Category names like this?:

:loudspeaker: Announcements

:desktop_computer: Tech Support

2 „Gefällt mir“

You could probably do some fancy CSS customization to achieve something similar.

5 „Gefällt mir“

Probably not inside the drop-downs as the list items are not styled with classes that can distinguish different categories. Nor in category lists.

One way to do this is to use the category’s url as a guideline.

Here’s a very rough example:

[href="/c/hosting"] .badge-category-bg { // remove default category color marker
    display: none !important;
}

[href="/c/hosting"] .badge-category:before { // add new font awesome icon in its place
    font-family: fontawesome;
    content: "\f1b9";
    margin-right: 5px;
}

This would result in:

I have not tested this everywhere and it needs a lot more refinement but that’s the basic idea.

The composer selecter has attributes added to category list items like data-name="hosting"

9 „Gefällt mir“

This is cool. Probably the closest I can get for now. Thank you!

1 „Gefällt mir“

Ich habe genau danach gesucht – da der MD-Kurzcode im Feld für den Kategorienamen nicht funktionierte – habe ich versucht, ein rotes Herz :heart: in den Kategorienamen zu kopieren und einzufügen, und habe festgestellt, dass Discourse es gerne akzeptiert, so wie es wahrscheinlich auch :ringer_planet: Saturn akzeptieren würde.

Dieses Thema wurde nach 2353 Tagen automatisch geschlossen. Neue Antworten sind nicht mehr möglich.