# How to hide Brand Header for logged-in users?

**URL:** https://meta.discourse.org/t/how-to-hide-brand-header-for-logged-in-users/312625
**Category:** Development
**Tags:** css, brand-header
**Created:** [4 maart 2018 om 06:38 UTC](https://meta.discourse.org/t/how-to-hide-brand-header-for-logged-in-users/312625 "2018-03-04T06:38:02Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![\_vincent](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/_vincent/32/119557_2.png) [@\_vincent](https://meta.discourse.org/u/_vincent)
#### Post date: [4 maart 2018 om 06:38 UTC](https://meta.discourse.org/t/how-to-hide-brand-header-for-logged-in-users/312625/1 "2018-03-04T06:38:02Z")

</div>

Great theme component. How would you proceed to hide it for logged-in users?

---

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [5 maart 2018 om 05:20 UTC](https://meta.discourse.org/t/how-to-hide-brand-header-for-logged-in-users/312625/2 "2018-03-05T05:20:11Z")

</div>

You can do it via below CSS

```css
.b-header {
  display: none;
}

.anon .b-header {
  display: block;
}

```

---

<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: [18 juni 2024 om 20:32 UTC](https://meta.discourse.org/t/how-to-hide-brand-header-for-logged-in-users/312625/3 "2024-06-18T20:32:28Z")

</div>

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