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:
1 Like
Yes I can certainly do that. I think my people wanted to change the image for something else.
1 Like
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.
2 Likes
That’s what I was looking for! The text customization fields can be difficult to find. Thanks
3 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
If you want to use a Discourse emoji and have it at the same place as the original emoji, you can use the following code:
.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;
}
3 Likes