[Resolved] Menu decoration and position of mobile navigation

Home Forums Support [Resolved] Menu decoration and position of mobile navigation

Home Forums Support Menu decoration and position of mobile navigation

Viewing 11 posts - 16 through 26 (of 26 total)
  • Author
    Posts
  • #676646
    David
    Staff
    Customer Support

    I must say that did make laugh…. a lot πŸ™‚ Thank you. I have the same problem with the cat and the coffee.

    So replace this:

    @media (min-width: 768px) { 
        .slideout-toggle { 
            display: none; 
        }
    }

    With this:

    @media (min-width: 768px) { 
        .gen-sidebar-nav .sf-menu>li.slideout-toggle {
            display: none;
        }
    }
    
    @media (max-width: 768px) { 
        .textwidget .slideout-toggle { 
            display: none; 
        }
    }
    #676659
    Nils

    πŸ™‚
    Unfortunately, that does not work. the 2nd button (the “new”) is hidden, the 1st button remains.

    #676674
    David
    Staff
    Customer Support

    Oh dear…. i just edited the code above, can you try that.

    #676685
    Nils

    no change with the new code πŸ™
    maybe i’m doing something wrong?

    [edit]
    I should go to bed and try again tomorrow afternoon.
    Thank you for your great support and a good night!

    #676957
    David
    Staff
    Customer Support

    Hi there,

    So on desktop i can see: Menu toggle in top widget. And its removed from the sidebar menu.
    On mobile, its just the mobile menu.

    So whats not right? Let me know

    #677007
    Nils

    Hi David,

    first, when you’re in Berlin I like to invite you for a coffee πŸ™‚

    The problem is that the menu-toggle in the Topbar only appears in the Desktop view. I wanted to try to hide the toggle in the topbar only in the desktop view and completely hide the toggle in the left sidebar.

    I hope my english does not sound unfriendly, that’s not my favorite language and sometimes google has to help me ..

    #677016
    David
    Staff
    Customer Support

    You’re English is fine πŸ™‚ Better than my German, which isn’t a lot.

    OK so to be clear.
    On the Desktop there should be no Toggle shown anywhere?
    And on mobile i assume you want the Toggle to appear at the top?

    #677017
    Nils

    πŸ™‚
    That’s exactly how I thought so

    #677468
    Tom
    Lead Developer
    Lead Developer

    Try replacing this:

    @media (max-width: 768px) {
        .textwidget .slideout-toggle {
            display: none;
        }
    }

    With this:

    @media (min-width: 769px) {
        .textwidget .slideout-toggle {
            display: none;
        }
    }

    Then add this:

    @media (max-width: 768px) {
        .main-navigation .menu-toggle {
            display: none;
        }
    }

    Let me know πŸ™‚

    #677653
    Nils

    Excellent! Many Thanks! You are the master of the universe!
    I wish you and David a nice weekend πŸ™‚

    Nils

    #677988
    Tom
    Lead Developer
    Lead Developer

    haha thank you! πŸ™‚

    Glad we could help!

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