Site logo

[Resolved] I would like to get the Orbital menu in GeneratePress (Mobile menu)

Home Forums Support [Resolved] I would like to get the Orbital menu in GeneratePress (Mobile menu)

Home Forums Support I would like to get the Orbital menu in GeneratePress (Mobile menu)

Viewing 11 posts - 16 through 26 (of 26 total)
  • Author
    Posts
  • #992439
    Isaac Krombell

    Do not install any plugin. If the button works for me.

    #992574
    Tom
    Lead Developer
    Lead Developer

    Hmm, not working for me using developer tools or on my phone. Can you try again on your phone after clearing the browser cache?

    We may need to take a step back and deactivate plugins one by one to see if one of them is conflicting with the toggle.

    #992603
    Isaac Krombell

    I have just deactivated almost all the plugins and I have cleared the cache and I was testing and it works on both phones and in the browser.

    #993065
    Tom
    Lead Developer
    Lead Developer

    Strange, I can get it to work by resizing my browser, but not any other way.

    Does this CSS get you close to what you’re after?:

    .main-navigation.offside {
        height: auto;
        top: auto;
        bottom: 10rem;
        border-radius: 10px;
        max-height: 400px;
    }

    Let me know 🙂

    #993263
    Isaac Krombell

    Thank you! It works on the computer, on the iphone and on the ipad but on android devices it does not work. I’m testing it in Chrome. I don’t know what it can be since it only gives problems on Android.

    #993277
    Isaac Krombell

    Solved I had put this code

    button.menu-toggle:focus {
        display: none !important;
      }

    He is the one who was giving trouble. How can it be done so that the lower padding is not left in the menu after the last link? And the menu is left without padding at the bottom.

    #993340
    Tom
    Lead Developer
    Lead Developer

    Give this a shot:

    .slideout-navigation .main-nav {
        margin-bottom: 0;
    }
    #993344
    Isaac Krombell

    Perfect!! Thanks a lot Tom. It’s looking great!! I put a bottom border on each link and I would like to know how I can remove or hide the edge of the last link in the menu? That edge is mainly noticeable when deploying the submenu.

    #993348
    Tom
    Lead Developer
    Lead Developer

    You have this:

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    Try this instead:

    .main-nav ul li:not(:last-child) {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    #993352
    Isaac Krombell

    Perfect!!! Many thanks

    #993895
    Tom
    Lead Developer
    Lead Developer

    Glad I could help 🙂

Viewing 11 posts - 16 through 26 (of 26 total)
  • You must be logged in to reply to this topic.