# How can I hide assignees from the tasks?

**URL:** <https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121>\
**Category:** Questions\
**Created:** [May 3, 2024, 4:28am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121 "2024-05-03T04:28:40Z")\
**Posts on this page:** 6\
**Page:** 1

<div class="post-metadata">

**Author:** ![Unknow0059](https://yyz2.discourse-cdn.com/free1/user_avatar/kanboard.discourse.group/unknow0059/32/1861_2.png) [@Unknow0059](https://kanboard.discourse.group/u/Unknow0059)\
**Post date:** [May 3, 2024, 4:28am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121/1 "2024-05-03T04:28:40Z")

</div>

The image in the kanboard’s website shows a screenshot where the task elements are absent of assignee names (and the assignee management button).

How could I have my Kanboard look like that?

---

<div class="post-metadata">

**Author:** ![Unknow0059](https://yyz2.discourse-cdn.com/free1/user_avatar/kanboard.discourse.group/unknow0059/32/1861_2.png) [@Unknow0059](https://kanboard.discourse.group/u/Unknow0059)\
**Post date:** [November 17, 2024, 3:43am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121/2 "2024-11-17T03:43:54Z")

</div>

i’d really appreciate a response. Even a “those images are outdated and not representative of kanboard” would be nice.

---

<div class="post-metadata">

**Author:** ![RainerBielefeld](https://yyz2.discourse-cdn.com/free1/user_avatar/kanboard.discourse.group/rainerbielefeld/32/1076_2.png) [@RainerBielefeld](https://kanboard.discourse.group/u/RainerBielefeld)\
**Post date:** [November 17, 2024, 8:20am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121/3 "2024-11-17T08:20:37Z")

</div>

Hi, for me it’s difficult to understand your desire.

 ![](https://global.discourse-cdn.com/free1/uploads/kanboard1/original/2X/0/06bba08c530062f537de5f3f63915f8ee9d2f8e2.png)  
simply shows Assignees without selected Avatar image in their user Profile.  
And what “assignee management button” are you talking about?

---

<div class="post-metadata">

**Author:** ![Unknow0059](https://yyz2.discourse-cdn.com/free1/user_avatar/kanboard.discourse.group/unknow0059/32/1861_2.png) [@Unknow0059](https://kanboard.discourse.group/u/Unknow0059)\
**Post date:** [November 19, 2024, 5:04am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121/4 "2024-11-19T05:04:10Z")

</div>

I’ve found a workaround.

Using the plugin **“BoardCustomizer”** , under **“My Profile”** then **“My display settings”** , disable **“Card: hide owner name”**.

But I assume there’s a way to hide the assignee name that doesn’t involve plugins.

And about the button, it seems I was mistaken, so forget that.

---

<div class="post-metadata">

**Author:** ![alfredb](https://yyz2.discourse-cdn.com/free1/user_avatar/kanboard.discourse.group/alfredb/32/1051_2.png) [@alfredb](https://kanboard.discourse.group/u/alfredb)\
**Post date:** [November 19, 2024, 8:21am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121/5 "2024-11-19T08:21:31Z")

</div>

> [@Unknow0059](#):
>
> But I assume there’s a way to hide the assignee name that doesn’t involve plugins.

I would simply say no.

Wait. You could try with a custom stylesheet, at _Settings \> Application settings_.

```css
span.task-board-assignee {
  visibility: hidden;
}

```

No warranty regarding any potential side effects.

 ![image](https://global.discourse-cdn.com/free1/uploads/kanboard1/original/2X/4/47b6d8ea82775b152d84c9a07751602f5004ae95.png)

---

<div class="post-metadata">

**Author:** ![dan](https://avatars.discourse-cdn.com/v4/letter/d/eada6e/32.png) [@dan](https://kanboard.discourse.group/u/dan)\
**Post date:** [December 8, 2025, 7:29am UTC](https://kanboard.discourse.group/t/how-can-i-hide-assignees-from-the-tasks/3121/6 "2025-12-08T07:29:12Z")

</div>

Thanks for this! I was trying to do something similar, and your post pointed me in the right direction.

Here’s the CSS for hiding the assignee from the collapsed board view:

```css
.task-board-collapsed {
  font-size: 0;
}

.task-board-collapsed a {
  font-size: 0.9rem;
}

.task-board-collapsed span[title] {
  display: none;
}

```
