# Wrench no longer working due to old theme

**URL:** https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165
**Category:** Development
**Created:** [July 24, 2024, 4:58pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165 "2024-07-24T16:58:44Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Joseph\_Tucker1](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/joseph_tucker1/32/253029_2.png) [@Joseph\_Tucker1](https://meta.discourse.org/u/Joseph_Tucker1)
#### Post date: [July 24, 2024, 4:58pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/1 "2024-07-24T16:58:44Z")

</div>

About mid-May, the wrench stopped working for our admins. I’d really like to get this working again.

\*\*

 ![image](https://global.discourse-cdn.com/meta/original/4X/c/6/9/c69db639ab027f776ee599c021d97a564108d26e.jpeg)  
\*\*

We also have a navbar that uses jquery for dropdown options and now those aren’t working anymore after updating our custom theme. Any help would be much appreciated!

[https://community.ratebeer.com/](https://community.ratebeer.com/) .

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [July 24, 2024, 5:03pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/2 "2024-07-24T17:03:21Z")

</div>

> [@Joseph\_Tucker1](#):
>
> About mid-May, the wrench stopped working for our admins. I’d really like to get this working again.

Is this also because of your custom theme or a general problem?

---

<div class="post-metadata">

### Author: ![Jagster](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jagster/32/192154_2.png) [@Jagster](https://meta.discourse.org/u/Jagster)
#### Post date: [July 24, 2024, 5:07pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/3 "2024-07-24T17:07:45Z")

</div>

From my experience it is every time some plugin, component or theme. What [safe mode](https://meta.discourse.org/t/53504?silent=true) says?

---

<div class="post-metadata">

### Author: ![Joseph\_Tucker1](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/joseph_tucker1/32/253029_2.png) [@Joseph\_Tucker1](https://meta.discourse.org/u/Joseph_Tucker1)
#### Post date: [July 24, 2024, 8:06pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/4 "2024-07-24T20:06:28Z")

</div>

Yes it’s probably our theme. It’s quite old. However no one had touched any code locally in five years and yet there have been a number of problems arising.

I’m not interested in placing blame though. I am interested in solving the problem.

How does one test for problems?

Are there acceptable methods to create a working navbar for a custom theme? (Ours is an ancient version of bootstrap/jquery)

---

<div class="post-metadata">

### Author: ![merefield](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/merefield/32/176214_2.png) [@merefield](https://meta.discourse.org/u/merefield)
#### Post date: [July 24, 2024, 8:38pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/5 "2024-07-24T20:38:00Z")

</div>

The first thing you should share is any errors and/or deprecation warnings in your browser console.

---

<div class="post-metadata">

### Author: ![bryce](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bryce/32/377822_2.png) [@bryce](https://meta.discourse.org/u/bryce)
#### Post date: [July 24, 2024, 8:51pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/6 "2024-07-24T20:51:04Z")

</div>

Hi Joseph,

I took a look at the forum and I think I see what the issue may be.

(1) It looks like there’s some CSS in the theme to style `.dropdown-menu` that is causing an issue. We recently did a big update to our “form kit”, so maybe the `.dropdown-class` was added to the admin menu as part of the process, and now is being inadvertently targeted by the old CSS.

There are two copies of the same styling in the theme that both include `display: none`.  
If I disable those in browser dev tools, the menu shows up (2).

However, it looks like this CSS is important for hiding a different dropdown menu (3), since it appeared after I disabled the `display: none`’s.

 ![image](https://global.discourse-cdn.com/meta/original/4X/2/0/8/208d9ea9f2e65f7ac8065217db56c35a5b5ec08d.jpeg)

What I would recommend would be to add something like this to your common.scss:

```plaintext
.fk-d-menu__inner-content .dropdown-menu {
   display: block;
}

```

This should target just that admin menu while leaving the other dropdown menus alone.

---

<div class="post-metadata">

### Author: ![Joseph\_Tucker1](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/joseph_tucker1/32/253029_2.png) [@Joseph\_Tucker1](https://meta.discourse.org/u/Joseph_Tucker1)
#### Post date: [July 24, 2024, 10:02pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/7 "2024-07-24T22:02:56Z")

</div>

Thank you so much, Bryce!

---

<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: [August 23, 2024, 10:03pm UTC](https://meta.discourse.org/t/wrench-no-longer-working-due-to-old-theme/318165/8 "2024-08-23T22:03:45Z")

</div>

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