How do I remove the hand-wave emoji from the login ui?

That’s correct, themes generally add CSS on top of Discourse’s core CSS, so they only override our defaults where needed. The easiest way to customize an existing theme would be to create a new theme component via the admin UI, add the CSS below to common, and then add your new theme component to the Fakebook theme.

.waving-hand {
  display: none;
}
3 Likes