# Make it easier to find "Sign Up" on mobile

**URL:** https://meta.discourse.org/t/make-it-easier-to-find-sign-up-on-mobile/404022
**Category:** Feature
**Created:** [28 במאי,‏ 2026,‏ 4:07pm UTC](https://meta.discourse.org/t/make-it-easier-to-find-sign-up-on-mobile/404022 "2026-05-28T16:07:27Z")
**Posts on this page:** 1
**Showing post:** 14

<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: [30 במאי,‏ 2026,‏ 8:36pm UTC](https://meta.discourse.org/t/make-it-easier-to-find-sign-up-on-mobile/404022/14 "2026-05-30T20:36:35Z")

</div>

a pretty simple sidebar solution is to just add the link then hide it for everyone except mobile anon users using some simple css:

 ![Screenshot 2026-05-30 at 1.45.02 PM](https://global.discourse-cdn.com/meta/original/4X/b/5/6/b564ae1ee225ad1b9705f93a7da6fe94275619ff.png)

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

.sidebar-section-link-wrapper[data-list-item-name="Sign up"] {
  display: none;

  .anon & {
    @include viewport.until(md) {
      display: block;
    }
  }
}

```

 ![Screenshot 2026-05-30 at 1.44.31 PM](https://global.discourse-cdn.com/meta/original/4X/6/b/c/6bcd24f8d237e284ff9d46edb90486208e429366.png)

---

_[View the full topic](https://meta.discourse.org/t/make-it-easier-to-find-sign-up-on-mobile/404022)._
