How can I change the skin color of the hand on the login and signup screens? Thanks in advance for your help.
1 Like
You cannot. The color is randomized, so you’ll get a different skin tone most times you refresh the page.
8 Likes
Can we eliminate the hand?
You can add this to your custom CSS to hide the waving hand:
.login-welcome-header > .waving-hand {
visibility: hidden;
}
4 Likes
The waving-hand can be replaced in Chrome and Edge using:
.login-welcome-header > .waving-hand {
content: url($my_image);
}
It will not work in Firefox. Replacing “content” with “background” does not work either.
Handlebars does not seem to work either since it is an ember and is an additive rather than subtractive or replace process?