# Hamburger-icoon voor de zijbalk is niet zichtbaar

**URL:** https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342
**Category:** Support
**Created:** [19 januari 2023 om 20:04 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342 "2023-01-19T20:04:23Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![RHEE](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rhee/32/286338_2.png) [@RHEE](https://meta.discourse.org/u/RHEE)
#### Post date: [19 januari 2023 om 20:04 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342/1 "2023-01-19T20:04:24Z")

</div>

I’ve just setup the sidebar feature, and figured out the hamburger icon is not visible, like this:

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/2/9/d29d2e1a53680b10a4f4c13dc5ef2734ce70b1c7.png)

But when I hover my mouse in the box, it somehow appears its icon:

 ![image](https://global.discourse-cdn.com/meta/original/4X/6/0/7/60762361a5a0b47394fe37f68dc17905eb4fd20d.png)

How can I show the icon even when I’m not pointing my cursor in the box?

---

<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: [19 januari 2023 om 21:11 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342/2 "2023-01-19T21:11:22Z")

</div>

Hello,

It seems to your `--header_primary-low-mid` (which is the default header buttons) color variable is same color as `--header_primary` (header) color (#fff). This is why the sidebar icon is not visible. As I see on your site you are using the `--tertiary` color variable to the other header icons. You can also change the sidebar button color. Or you can change the` header_primary-low-mid` color to make it visible.

Create a new theme component or add this to an existing one

Desktop \> CSS

```scss
.header-sidebar-toggle {
  button {
    .d-icon {
      color: var(--tertiary);
    }
  }
}

```

---

<div class="post-metadata">

### Author: ![RHEE](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rhee/32/286338_2.png) [@RHEE](https://meta.discourse.org/u/RHEE)
#### Post date: [19 januari 2023 om 23:18 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342/3 "2023-01-19T23:18:07Z")

</div>

Thanks for your prompt reply!  
But I still cannot find the right variable you are mentioning:

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/d/0/dd09c88ad3fa64684a7ef20577d7024f15553208.png)  
Which one?

---

<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: [20 januari 2023 om 06:40 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342/4 "2023-01-20T06:40:42Z")

</div>

Well, as I see non of these can controls header buttons color. This is a custom theme where you can change the colors. I think this is a remote theme so probably you cannot change the color variable color but you can check it on the` /admin/customize/colors` (Admin \> Customize \> Colors) page. On that page select the Color Palette you use and search for the `header_primary-low-mid` variable. If you cannot change it then you need to contact with the theme creator.

OR

You can try to add a new theme component which will change the sidebar button color.

1. Go to `/admin/customize/themes/`  
Customize → Themes
2. Click the **Components** tab and then the Install button
3. On the popup window click + Create new tab and type the new component name.

 ![Screenshot 2023-01-20 at 7.33.58](https://global.discourse-cdn.com/meta/original/4X/6/5/0/65021fd5052dd192d48adab8bbd9e50f3a9c3e60.png)

1. Click Create button.
2. The component created. Now select which theme(s) you want to activate it.  
 ![Screenshot 2022-07-26 at 12.06.13](https://global.discourse-cdn.com/meta/original/4X/3/6/c/36c8b6490cf35b40f93199e6fc69858759633396.png)
3. Click the Edit CSS/HTML button.  
 ![Screenshot 2022-07-26 at 12.07.53](https://global.discourse-cdn.com/meta/original/4X/9/6/7/9673c30c71cf2e6fb2e8d34e484e7ad09b95589a.png)
4. Click the **Desktop** tab and paste the below code to the **CSS** section.

 ![Screenshot 2023-01-20 at 7.35.53](https://global.discourse-cdn.com/meta/original/4X/e/d/0/ed0afcc1fc643b32d0ae1286b4ad854e1faf5188.png)

```scss
.header-sidebar-toggle {
  button {
    .d-icon {
      color: var(--tertiary);
    }
  }
}

```

1. Click Save button. Done 🙂

---

<div class="post-metadata">

### Author: ![RHEE](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/rhee/32/286338_2.png) [@RHEE](https://meta.discourse.org/u/RHEE)
#### Post date: [20 januari 2023 om 10:07 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342/5 "2023-01-20T10:07:00Z")

</div>

Amazing, thanks for your help. It perfectly solved my issue =]

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [19 februari 2023 om 10:07 UTC](https://meta.discourse.org/t/hamburger-icon-for-the-sidebar-is-not-visible/252342/6 "2023-02-19T10:07:06Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
