[Resolved] Submenu disappears from screen to the right

Home Forums Support [Resolved] Submenu disappears from screen to the right

Home Forums Support Submenu disappears from screen to the right

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #138155
    Pieter

    The site has a menu, with submenu’s. When te screen from the visitor is too smal, the latest submenu disappears right from the screen. I has to shown to the left. Take a look on the site link
    Look at the last menu; Extra’s – Meer informatie – folders

    This is an update from a Joomla website link, there the submenu appears to the left if the screen is to small.

    #138240
    Tom
    Lead Developer
    Lead Developer

    You could do something like this:

    .main-navigation ul ul ul {
          left: auto;
          right: 100%;
    }

    If you want it to apply to only specific menu items, give that item a custom class in “Appearance > Menus”, and then do this:

    .main-navigation ul li.my-custom-class ul ul {
          left: auto;
          right: 100%;
    }
    #138440
    Pieter

    ah thanks Tom, dat did the job!

    #138442
    Pieter

    ow wait, on mobile those submenu’s are disappeared now…

    #138523
    Tom
    Lead Developer
    Lead Developer

    Ah, change it to this:

    @media (min-width: 769px) {
          .main-navigation ul li.my-custom-class ul ul {
                left: auto;
                right: 100%;
          }
    }
    #139132
    Pieter

    Thanks again Tom for your fast reply. It’s perfect now!

    #139141
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.