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 bootstrap.js (or anywhere your BB takes the scripts from) 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.
P.S. I will be creating the topic for a fix every day until you fix it.