# 移除头部中的私信链接/图标

**URL:** https://meta.discourse.org/t/removing-the-private-message-link-icon-in-header/87876
**Category:** UX
**Created:** [2018年五月19日 08:38 UTC](https://meta.discourse.org/t/removing-the-private-message-link-icon-in-header/87876 "2018-05-19T08:38:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jerry0](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jerry0/32/94523_2.png) [@jerry0](https://meta.discourse.org/u/jerry0)
#### Post date: [2018年五月19日 08:38 UTC](https://meta.discourse.org/t/removing-the-private-message-link-icon-in-header/87876/1 "2018-05-19T08:38:22Z")

</div>

Hi all,

Would anyone have a CSS or code suggestion for removing the private message (PM) link in the header drop-down?

 ![image](https://global.discourse-cdn.com/meta/original/3X/e/6/e61de4da869eb771e12c3d754c8c59ae905a9182.jpg)

We are aiming to add a PM inbox link to the top header and having two different links for the same thing so close to each other is not going to work too well.

Thanks in advance!

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [2018年五月21日 13:38 UTC](https://meta.discourse.org/t/removing-the-private-message-link-icon-in-header/87876/2 "2018-05-21T13:38:31Z")

</div>

This should hide it

```SCSS
div.menu-links-header { 
    .menu-links-row {
        li.glyphs a.user-pms-link {
            display: none;
        }
    }
}

```

Any icon in that dropdown can be hidden by swapping out the relevant class. For example, you could replace `a.user-pms-link` with `a.user-bookmarks-link` to hide bookmarks.

---

<div class="post-metadata">

### Author: ![jerry0](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jerry0/32/94523_2.png) [@jerry0](https://meta.discourse.org/u/jerry0)
#### Post date: [2018年五月21日 14:09 UTC](https://meta.discourse.org/t/removing-the-private-message-link-icon-in-header/87876/3 "2018-05-21T14:09:04Z")

</div>

Oh that now looks wonderful and spring-cleaned. Thank you 😌

 ![image](https://global.discourse-cdn.com/meta/original/3X/b/e/be81ebcebb4fc8830c561f80461b45189c4cda9f.jpg)
