Where is / Is there a setting for changing the waving hand icon on the new account sign ups?

Where is / Is there a setting for changing the waving hand icon on the new account sign ups?

I believe you can remove it with a little CSS:
Yes I can certainly do that. I think my people wanted to change the image for something else.
One way could be to hide the waving-hand and add the emoji to the text field:
js.create_account.header_title
js.login.header_title
Other than that, I’m not sure. Hopefully someone else can chip in. 

That’s what I was looking for! The text customization fields can be difficult to find. Thanks
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
如果您想使用 Discourse 表情符号,并将其放置在与原始表情符号相同的位置,您可以使用以下代码:
.waving-hand {
display: none;
}
.login-title:after {
content: "";
background: url("https://emoji.discourse-cdn.com/twitter/slight_smile.png?v=12");
background-size: contain;
display: inline-block;
height: 35px;
width: 35px;
margin-left: 35px;
}