How to add a title to a user?

Hello :wave:

That’s theme specific. Discourse Central Theme uses a custom CSS to achieve this.

.topic-body {
  .topic-meta-data {
    .names {
      flex-wrap: wrap;
      align-items: baseline;

      .user-title {
        flex-basis: 100%;
      }
    }
  }
}
3 Likes