hello
In order for your menu to appear always
you will need to start
your_site/themes/you_theme/js/custom.js
in this file you will need to comment on the following code
function dynamicPanel() {
var spm = '#dynamicPanel';
if ($(window).width() >= 200)
{
$(window).scroll(function() {
if($(window).scrollTop() > 300) {
$(spm).slideDown('normal'
;
} else {
$(spm).slideUp('normal'
;
}
});
}
}
after that you will need to pass
your_site/themes/you_theme/css/os-style.css
line 1854
In this line, change the
"display: none;"
to
"display: block !important;"
Regards
Andrew
Ordasoft team