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 „Gefällt mir“

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 „Gefällt mir“

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 „Gefällt mir“

exactly. A perfect result

1 „Gefällt mir“

Ein Beitrag wurde in ein neues Thema aufgeteilt: Wie fügt man einem Benutzer einen Titel hinzu?