# Como alterar/remover o ícone na tela de login?

**URL:** https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803
**Category:** Support
**Created:** [Agosto 15, 2024, 12:39pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803 "2024-08-15T12:39:06Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Yt.w](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yt.w/32/348367_2.png) [@Yt.w](https://meta.discourse.org/u/Yt.w)
#### Post date: [Agosto 15, 2024, 12:39pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803/1 "2024-08-15T12:39:06Z")

</div>

![image](https://global.discourse-cdn.com/meta/original/4X/5/4/a/54a1d97c02b127bee0a33b8cd39d8d57f7faaa87.png)  
Existe alguma forma de substituir este ícone? ou apenas removê-lo?

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [Agosto 15, 2024, 1:01pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803/2 "2024-08-15T13:01:36Z")

</div>

Você pode escondê-lo usando CSS

> [@awesomerobot](#):
>
> ```plaintext
> .waving-hand {
> display: none;
> }
> 
> ```

> [@Making custom CSS changes on your site](https://meta.discourse.org/t/make-css-changes-on-your-site/168101?u=moin):
>
> bookmark This guide explains how to make CSS changes on your Discourse site, including an introduction to CSS, where to add CSS in Discourse, and how to find the right selectors using browser inspection tools. person_raising_hand Required user level: Administrator Summary This guide covers: A brief introduction to CSS and key concepts How to add CSS to your Discourse site using theme components Using browser inspection tools to find the right CSS selectors Understanding CSS basics C…

---

<div class="post-metadata">

### Author: ![Yt.w](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yt.w/32/348367_2.png) [@Yt.w](https://meta.discourse.org/u/Yt.w)
#### Post date: [Agosto 15, 2024, 1:04pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803/3 "2024-08-15T13:04:33Z")

</div>

Olá. Tentei isto e isso bagunçará o layout.

![image](https://global.discourse-cdn.com/meta/original/4X/6/4/4/644b0bc52e30bacc5da9a10bd8a63be62e0d4565.png)

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [Agosto 15, 2024, 1:08pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803/4 "2024-08-15T13:08:02Z")

</div>

Você também pode tentar

> [@Setting/Text for Waving Hand Sign Up Emoji](https://meta.discourse.org/t/setting-text-for-waving-hand-sign-up-emoji/204136/4?u=moin):
>
> 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. slightly_smiling_facecrossed_fingers

ou

> [@Setting/Text for Waving Hand Sign Up Emoji](https://meta.discourse.org/t/setting-text-for-waving-hand-sign-up-emoji/204136/8?u=moin):
>
> 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; } [image]

---

<div class="post-metadata">

### Author: ![Yt.w](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yt.w/32/348367_2.png) [@Yt.w](https://meta.discourse.org/u/Yt.w)
#### Post date: [Agosto 15, 2024, 1:10pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803/5 "2024-08-15T13:10:21Z")

</div>

Muito obrigado!

Encontrei este que não bagunça o layout

```plaintext
.login-welcome-header > .waving-hand {
    visibility: hidden;
}

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [Setembro 14, 2024, 1:10pm UTC](https://meta.discourse.org/t/how-to-change-remove-icon-on-login-screen/321803/6 "2024-09-14T13:10:45Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
