Toggle Drop down Menu

Hello,

I was wondering if someone can help me the toggle drop down menu for smaller screens less than (991px).

The Toggle Drop down menu doesn’t work, its visible but when I click on it does nothing, No menu. I can’t seem to find where exactly the issue is. Otherwise on bigger screens its absolutely fine.

Any help would me much appreciated!
 

 

On 10/22/2019 at 7:10 PM, elcapitan said:

Hello,

I was wondering if someone can help me the toggle drop down menu for smaller screens less than (991px).

The Toggle Drop down menu doesn’t work, its visible but when I click on it does nothing, No menu. I can’t seem to find where exactly the issue is. Otherwise on bigger screens its absolutely fine.

Any help would me much appreciated!
 

 

Which toggle drop down are you referring to? Do you have a screenshot?

 I fixed the issue there was some lines of code missing in app.blade that caused the dropdown menu on smaller screens not to work.

Many Thanks

On 11/5/2019 at 5:37 AM, elcapitan said:

 I fixed the issue there was some lines of code missing in app.blade that caused the dropdown menu on smaller screens not to work.

Many Thanks

Cool, can you show me or put in a PR with the fix? I’d like to incorporate it in!

 Sorry for the Super Late reply, Essentially I inserted the lines below in app.blade

    <style type=“text/css”>.in {
        display: block !important;
        transform: none !important;
        position: unset !important;
        background-color: unset !important;
    }
    .navbar-toggler-right {
    margin-right: -40px;
    margin-top: 10px;
    }
</style>

Under Line 19, after:

    {{-- Start of the required files in the head block --}}
    <link href=“{{ public_asset(‘/assets/global/css/vendor.css’) }}” rel=“stylesheet”/>

that seemed a quick fix to the issue. hope that helps!

Thanks, there’s a issue in GitHub that says the navigation is unusable, will you be able to add this to that? I don’t have access to a computer right now and I don’t want to forget thanks!!

Nevermind, I added it there. Thanks! Going to try this out

1 Like

Sorry Been at work all day, Hopefully It works for you and everyone.

tested this but did not work

15 hours ago, Haru said:

tested this but did not work

Will Look into this, Works for me

  The fix was for Beta 1, we changed the layout in Beta 2, but I think I know where to look, It a button issue with small screens or if you shrink browser… Will update when I find a fix and I’ll submit on github.

For beta 2, I updated bootstrap and that theme to the non-beta versions. When I first did it, bootstrap 4 was in alpha, so there’s some changes there. I wonder if there are some markup changes that need to happen (like on the dashboard there’s a section which needs some markup updates). But that’s likely why it isn’t working correctly.