Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Themes & Styling

Learn2 left sidebar

Started by to 6 years ago · 5 replies · 933 views
6 years ago

My goal is a Sidebar non-bounce up in Learn2 theme (by code change).
The example I refer to is (where it works perfectly):
W3 Schools

Then scroll down the left sidebar and click on Mobile (something that is lower than your screen).
Notice the left sidebar stayed in place when you landed on the new page.
The left sidebar did not bounce back to the page top.

Learn2 left sidebar always bounces back to the top when a long list of links exist lower than your screen.

We would like to code into Learn2 theme so that the left sidebar does NOT bounce up.

Does anyone know how it can be coded (or already have coded it).
Thanks.

6 years ago

In /themes/THEMENAME/templates/partials/base.html.twig add this code right before the closing body tag:

HTML
<script>
// MOD.hs Scroll to active menu
//
$(document).ready(function() {
    $('nav').animate({
        scrollTop: $(".active").offset().top
    }, 1000);
});</script>

I tested it with Quark. Should work with Learn2, too.

-- Harald

last edited 01/10/20 by Harald Schneider
6 years ago

Thanks, we'll try it. Otherwise I may switch to another Grav Theme that already flows better in the Navigation.

2 years ago

Was there a solution here? We have the same problem, unfortunately the solution shown does not work for us.

10 months ago
TXT
That is because the menu in learn2 is not a nav object. For learn2, the code is:
JS
// MOD.hs Scroll to active menu
//
$(document).ready(function() {
    const offset = $(".active").offset().top - $('.scrollbar-inner').offset().top;
    $('.scrollbar-inner').animate({
        scrollTop: offset
    }, 1000);
});</script>

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 192 2 months ago
Themes & Styling · by Ian, 2 months ago
3 89 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 447 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 42 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 122 3 months ago