# Перестановка секций боковой панели

**URL:** https://meta.discourse.org/t/sidebar-section-rearrangement/288007
**Category:** Feature
**Created:** [08.Декабрь.2023 18:30:08 UTC](https://meta.discourse.org/t/sidebar-section-rearrangement/288007 "2023-12-08T18:30:08Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [08.Декабрь.2023 19:01:41 UTC](https://meta.discourse.org/t/sidebar-section-rearrangement/288007/3 "2023-12-08T19:01:41Z")

</div>

Настроек для этого нет, но это можно сделать, добавив CSS в admin/customize/themes

```css
.sidebar-wrapper { 
  .sidebar-custom-sections {
    display: contents;
  } 
  [data-section-name="community"] {
    order: -3;
  }
  [data-section-name="categories"] {
    order: -2;
  }
  [data-section-name="custom-section-title-here"] {
    order: -1;
  }
}

```

---

_[View the full topic](https://meta.discourse.org/t/sidebar-section-rearrangement/288007)._
