# Groepsnavigatie zijbalk menu secties

**URL:** https://meta.discourse.org/t/group-sidebar-menu-sections-deprecated/273505
**Category:** Theme component
**Tags:** deprecated, sidebar
**Created:** [1 augustus 2023 om 16:00 UTC](https://meta.discourse.org/t/group-sidebar-menu-sections-deprecated/273505 "2023-08-01T16:00:15Z")
**Posts on this page:** 1
**Showing post:** 22

<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: [3 mei 2024 om 14:58 UTC](https://meta.discourse.org/t/group-sidebar-menu-sections-deprecated/273505/22 "2024-05-03T14:58:45Z")

</div>

> [@jrgong](#):
>
> As inbox link we are using `/my/messages`. Since it’s rewritten to /u//messages, the link is not highlighted when the user visits the page. Is there any way to enable that?  
> 2.is there way to adjust the position of the menu in the sidebar relative to the core entries? We would like to place the section all the way at the bottom.

1. None of the links in the sidebar are highlighted when visited by default, that I know of. only when mouse-over or clicked. But that sort of visual formatting is theme dependent. Can be achieved with some mouse-effects CSS I think. I think perhaps:

```scss
.sidebar-section-link-wrapper .sidebar-section-link.active {
    color: $current_link_font_color;
    background: $current_link_background_color;
}

```

where `$current_link_font_color` and `$current_link_background_color` are color palette variables or hardcoded to whatever you want.

1. This is the method to use for this:

> [@Sidebar Section Rearrangement](https://meta.discourse.org/t/sidebar-section-rearrangement/288007/3):
>
> There’s not a setting for this, but it can be done by adding CSS to admin/customize/themes .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/group-sidebar-menu-sections-deprecated/273505)._
