# Déplacement de la section des discussions personnelles de la barre latérale sous la section des canaux

**URL:** https://meta.discourse.org/t/moving-the-personal-chat-section-of-the-sidebar-below-the-channels-section/278239
**Category:** Support
**Tags:** sidebar
**Created:** [Septembre 8, 2023, 12:59 UTC](https://meta.discourse.org/t/moving-the-personal-chat-section-of-the-sidebar-below-the-channels-section/278239 "2023-09-08T00:59:12Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)
#### Post date: [Septembre 8, 2023, 1:24 UTC](https://meta.discourse.org/t/moving-the-personal-chat-section-of-the-sidebar-below-the-channels-section/278239/2 "2023-09-08T01:24:24Z")

</div>

Vous pouvez définir l’ordre des sections du menu de navigation par défaut avec ceci dans le CSS commun :

```scss
.sidebar-section-wrapper.sidebar-section[data-section-name="categories"] {
  order: 1;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="tags"] {
  order: 2;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="chat-dms"] {
  order: 3;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="chat-channels"] {
  order: 4;
}
.sidebar-section-wrapper.sidebar-section[data-section-name="messages"] {
  order: 5;
}

```

vous pouvez également le faire avec mon [contrôle d’affichage du menu de navigation TC](https://meta.discourse.org/t/navigation-sidebar-menu-display-control/277687/1).

---

_[View the full topic](https://meta.discourse.org/t/moving-the-personal-chat-section-of-the-sidebar-below-the-channels-section/278239)._
