OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Help with menu on photographer drupal theme (0 viewing) 

OrdaSoft template Support

Go to bottom Favoured: 0

Help with menu on photographer drupal theme

scatt4 (Visitor)
Posts: 0
graphgraph
User Offline
Help with menu on photographer drupal theme 6 Years, 4 Months ago
Karma: 0  
Hi guys,
the menu bar is not visible at the start but it comes visible scrolling down, how can i set it to be always visible?

Thanks
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Help with menu on photographer drupal theme 6 Years, 4 Months ago
Karma: 101  
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
Logged Logged
The administrator has disabled public write access.
Go to top
»