# Hide the logout button

**URL:** https://meta.discourse.org/t/hide-the-logout-button/369901
**Category:** UX
**Created:** [June 12, 2025, 3:18pm UTC](https://meta.discourse.org/t/hide-the-logout-button/369901 "2025-06-12T15:18:35Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![IanManning](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ianmanning/32/433880_2.png) [@IanManning](https://meta.discourse.org/u/IanManning)
#### Post date: [June 12, 2025, 3:18pm UTC](https://meta.discourse.org/t/hide-the-logout-button/369901/1 "2025-06-12T15:18:35Z")

</div>

Is it possible to hide the login button and if so how? I saw an earlier post saying “Yes, with CSS” but it didn’t explain further - I’m using the business plan so cannot customise code.

---

<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: [June 12, 2025, 3:29pm UTC](https://meta.discourse.org/t/hide-the-logout-button/369901/2 "2025-06-12T15:29:02Z")

</div>

> [@IanManning](#):
>
> I’m using the business plan so cannot customise code.

You can! You can’t edit existing code, but you can add CSS to themes, from Admin \> Themes & components

To hide it from the dropdown menu in the header you can add

```css
.user-menu.revamped #quick-access-profile li.logout {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![IanManning](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ianmanning/32/433880_2.png) [@IanManning](https://meta.discourse.org/u/IanManning)
#### Post date: [June 12, 2025, 4:12pm UTC](https://meta.discourse.org/t/hide-the-logout-button/369901/3 "2025-06-12T16:12:12Z")

</div>

thanks so much, will give it a go!
