Display name of forum

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?

One of the more popular options would be the Brand header theme component. Can you take a look at that and see if it might meet your needs?

4 Likes

Quick and dirty CSS solution:

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

Result:

4 Likes

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.

7 Likes

exactly. A perfect result

1 Like

A post was split to a new topic: How to add a title to a user?