Wrench no longer working due to old theme

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.

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

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

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

4 Likes