# Display name of forum

**URL:** https://meta.discourse.org/t/display-name-of-forum/145455
**Category:** Development
**Tags:** css
**Created:** [March 24, 2020, 8:45pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455 "2020-03-24T20:45:10Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![rachel\_england](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rachel_england/32/173995_2.png) [@rachel\_england](https://meta.discourse.org/u/rachel_england)
#### Post date: [March 24, 2020, 8:45pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/1 "2020-03-24T20:45:10Z")

</div>

I’d like to display the name of the forum in the header, but now only see the logo. How can I add text to the header so that our audience knows what the site is?

---

<div class="post-metadata">

### Author: ![tshenry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tshenry/32/119495_2.png) [@tshenry](https://meta.discourse.org/u/tshenry)
#### Post date: [March 24, 2020, 8:56pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/3 "2020-03-24T20:56:19Z")

</div>

One of the more popular options would be the [Brand Header](https://meta.discourse.org/t/brand-header-theme-component/77977). Can you take a look at that and see if it might meet your needs?

---

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [March 24, 2020, 8:56pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/4 "2020-03-24T20:56:28Z")

</div>

Quick and dirty CSS solution:

```css
.d-header {
    .title a:before {
        content: "Forum name";
        font-size: 1.75em;
        font-weight: bold;
    }
    #site-logo {
        display: none;
    }
}

```

Result:

 ![image](https://global.discourse-cdn.com/meta/original/3X/0/c/0caa02cd5dd689ebb2ba9687482689da3bdc7320.png)

---

<div class="post-metadata">

### Author: ![jordan.vidrine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jordan.vidrine/32/515563_2.png) [@jordan.vidrine](https://meta.discourse.org/u/jordan.vidrine)
#### Post date: [March 24, 2020, 9:32pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/5 "2020-03-24T21:32:08Z")

</div>

Are you referring to the default “Discourse” logo?

And are you wanting to remove the logo entirely and only have visitors see the title of the forum?

If so, you can go into your admin settings \> branding \> and remove all of the logos.

---

<div class="post-metadata">

### Author: ![discovery1368](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/discovery1368/32/174095_2.png) [@discovery1368](https://meta.discourse.org/u/discovery1368)
#### Post date: [March 25, 2020, 2:56am UTC](https://meta.discourse.org/t/display-name-of-forum/145455/6 "2020-03-25T02:56:23Z")

</div>

exactly. A perfect result

---

<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: [March 28, 2024, 11:19pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/7 "2024-03-28T23:19:20Z")

</div>



---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [April 4, 2024, 4:47pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/8 "2024-04-04T16:47:16Z")

</div>

A post was split to a new topic: [How to add a title to a user?](https://meta.discourse.org/t/how-to-add-a-title-to-a-user/302436)

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [April 4, 2024, 4:47pm UTC](https://meta.discourse.org/t/display-name-of-forum/145455/9 "2024-04-04T16:47:46Z")

</div>


