• Resolved spackletoe

    (@spackletoe)


    I’m sure it’s something simple, but I’m experiencing a sub-menu that is stuck open. You’ll see it on the site. I’ve tried deleting and re-creating the menu, but it seems that any sub-menu that I have always defaults to staying open. It’s not a caching issue, as I’ve tried in a number of browsers/in-cognito.

    I’d love some advice on this.

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • It looks like there is conflicting styles in your Galleria and storefront themes. I’m guessing Galleria is a child theme of storefront.

    I think if you add this to your stylesheets, that’s often something you can do with the theme or customizer. You can read more here.

    
    @media screen and (min-width: 768px) {
    .main-navigation ul.menu ul.sub-menu, .main-navigation ul.nav-menu ul.sub-menu {
      left: -9999px;
    }
    .main-navigation ul li.focus>ul, .main-navigation ul li:hover>ul, .secondary-navigation ul li.focus>ul, .secondary-navigation ul li:hover>ul {
      left: 0 !important;
    }
    }
    

    This really isn’t the best way to go, since the child theme could update and break this again. Ideally, the theme would update itself.

    Thread Starter spackletoe

    (@spackletoe)

    Thanks so much, that did the trick!

    Glad to help, you might want to mark this topic resolved just to keep things tidy.

    Thread Starter spackletoe

    (@spackletoe)

    boom.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Submenu stuck open’ is closed to new replies.