# Linkes Hamburger-Menü auf Mobilgeräten

**URL:** https://meta.discourse.org/t/left-side-hamburger-menu-on-mobile/164513
**Category:** Theme component
**Tags:** mobile
**Created:** [18. September 2020 um 22:56 UTC](https://meta.discourse.org/t/left-side-hamburger-menu-on-mobile/164513 "2020-09-18T22:56:47Z")
**Posts on this page:** 1
**Showing post:** 47

<div class="post-metadata">

### Author: ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)
#### Post date: [10. April 2026 um 14:17 UTC](https://meta.discourse.org/t/left-side-hamburger-menu-on-mobile/164513/47 "2026-04-10T14:17:03Z")

</div>

Hier ist eine etwas hackige Möglichkeit, dies umzusetzen (in `common/css`, NICHT in `/mobile/css`)

```scss
@use "lib/viewport";

@include viewport.until(md) {
  .d-header:not(:has(.extra-info-wrapper.topic-info-visible)):not(:has(.extra-info-wrapper .topic-link)):not(.header-topic-info-visible) .title {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
  }
}

```

---

_[View the full topic](https://meta.discourse.org/t/left-side-hamburger-menu-on-mobile/164513)._
