Navigation Fix Request

Could you fix navigation on the forum? If it is a longread there should be at least “go to top” button or fixed navbar.

I already reported it here. You can also find a workaround with an older design there.

1 Like

It is only a workaround, but the fix is like 5-15 minutes work for the new theme!

Maybe, just want to mention there is a thread and a workaround.

2 Likes

@Saltypatra, @Kafka here’s the fix for the navigation issue:

add to stylesheet (.css) the following:

#ember5 {
position: relative;
margin: auto;
z-index: 1000;
width: 100%;
}
#ember5.fixed {
position: fixed;
}

In the bottstrap.js add:

//fixed navbar script//
var navwin = $(window);
fxel = $(‘#ember5’);
eloffset = fxel.offset().top;

navwin.scroll(function() {
if (eloffset < navwin.scrollTop()) {
fxel.addClass(“fixed”);
} else {
fxel.removeClass(“fixed”);
}
});
//fixed navbar script end//

After that the initial topic page will look like:

but after scrolling the content down the navbar will remain “sticky”:

So at least user could navigate to the content of the forum and see their notifications without a need to scroll to the very top of a longread.

Hope this helps

Aaand… no reaction whatsoever…

@Lyya seems you are good in coding, could you convey it to the forum devs?

@Saltypatra, @Kafka are you intentionally ignoring the fix that was suggested to your forum?