# Replace hamburger icon with text

**URL:** https://meta.discourse.org/t/replace-hamburger-icon-with-text/145079
**Category:** Support
**Created:** [March 21, 2020, 6:15pm UTC](https://meta.discourse.org/t/replace-hamburger-icon-with-text/145079 "2020-03-21T18:15:06Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![stephenjdc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stephenjdc/32/173697_2.png) [@stephenjdc](https://meta.discourse.org/u/stephenjdc)
#### Post date: [March 21, 2020, 6:15pm UTC](https://meta.discourse.org/t/replace-hamburger-icon-with-text/145079/1 "2020-03-21T18:15:06Z")

</div>

Hi. I’d like to replace the default discourse hamburger icon with the text ‘menu’ and can’t quite seem to get any of the methods I’ve found to work. I don’t mind whether it’s done via CSS or by using the scripting API, any tips would be appreciated.

---

<div class="post-metadata">

### Author: ![merefield](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/merefield/32/176214_2.png) [@merefield](https://meta.discourse.org/u/merefield)
#### Post date: [March 21, 2020, 7:54pm UTC](https://meta.discourse.org/t/replace-hamburger-icon-with-text/145079/2 "2020-03-21T19:54:34Z")

</div>

Try:

```plaintext
#toggle-hamburger-menu {
    &:before {
        content: "Menu";
    }
    svg {
        display: none;
    }
}

```

---

<div class="post-metadata">

### Author: ![stephenjdc](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stephenjdc/32/173697_2.png) [@stephenjdc](https://meta.discourse.org/u/stephenjdc)
#### Post date: [March 21, 2020, 8:23pm UTC](https://meta.discourse.org/t/replace-hamburger-icon-with-text/145079/3 "2020-03-21T20:23:55Z")

</div>

Amazing - that did the trick, thank you!

---

<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: [April 20, 2020, 8:24pm UTC](https://meta.discourse.org/t/replace-hamburger-icon-with-text/145079/4 "2020-04-20T20:24:01Z")

</div>

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