# Rearrange Existing Hamburger Menu Items

**URL:** https://meta.discourse.org/t/rearrange-existing-hamburger-menu-items/123098
**Category:** UX
**Created:** [July 16, 2019, 4:33pm UTC](https://meta.discourse.org/t/rearrange-existing-hamburger-menu-items/123098 "2019-07-16T16:33:47Z")
**Posts on this page:** 1
**Showing post:** 3

<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: [July 17, 2019, 1:26am UTC](https://meta.discourse.org/t/rearrange-existing-hamburger-menu-items/123098/3 "2019-07-17T01:26:55Z")

</div>

With CSS you can do something like…

```css
.hamburger-panel .panel-body-contents {
  display: flex; /* Setup a flex layout so you can reorder things */
  flex-direction: column;
  .menu-container-footer-links {
    order: -1; /* moves footer links to top */
    .keyboard-shortcuts-link {
     display: none !important; /* Hide keyboard shortcut link */
    }
  }
}

```

You might need to adjust some other things (borders, spacing), but I think this would get you 90% of the way there.

---

_[View the full topic](https://meta.discourse.org/t/rearrange-existing-hamburger-menu-items/123098)._
