# How to add a title to a user?

**URL:** https://meta.discourse.org/t/how-to-add-a-title-to-a-user/302436
**Category:** Support
**Created:** [April 4, 2024, 4:34pm UTC](https://meta.discourse.org/t/how-to-add-a-title-to-a-user/302436 "2024-04-04T16:34:41Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [April 4, 2024, 6:05pm UTC](https://meta.discourse.org/t/how-to-add-a-title-to-a-user/302436/2 "2024-04-04T18:05:59Z")

</div>

Hello :wave:

That’s theme specific. [Discourse Central Theme](https://meta.discourse.org/t/discourse-central-theme-meta-pre-release-out-now/287495) uses a custom CSS to achieve this.

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

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

```

---

_[View the full topic](https://meta.discourse.org/t/how-to-add-a-title-to-a-user/302436)._
