Hi,
I have few problems with the navigation bar one is that I have modified the CSS so that the menu bar is not fully transparent I've set opacity of 0,6 to the menu bar now when i scroll the site down so that the menu changes to white it works ok but when i scroll back up the menu bar is not the with of the page any more see picture attached some how it seems that when the scrollbar moves it skips out of the clean div.
i've tried to modify the gk.scripts.js
and i know that thease are the line affecting this problem but i could figure it out
// menu animation
if(page_loaded && jQuery('body').hasClass('imageBg')) {
// if menu is not displayed now
if(jQuery(window).scrollTop() > headerHeight && !jQuery('#gkMenuWrap').hasClass('active')) {
//document.id('gkHeaderNav').inject(document.id('gkMenuWrap'), 'inside');
jQuery('#gkMenuWrap').append(jQuery('#gkHeaderNav'));
jQuery('#gkHeader').attr('class', 'gkNoMenu');
// hide
jQuery('#gkMenuWrap').attr('class', 'active');
}
//
if(jQuery(window).scrollTop() <= headerHeight && jQuery('#gkMenuWrap').hasClass('active')) {
jQuery('#gkHeader').first('div').css('display', 'block');
// it seems there should be opening <div> here
jQuery('#gkHeader').first('div').prepend(jQuery('#gkHeaderNav'));
jQuery('#gkHeader').attr('class', '');
jQuery('#gkMenuWrap').attr('class', '');
// and a closing </div> here
}
}
another problem is that the opacity setting seems to work only in chrome and firefox.
The development site is accessible from the internet please pm me to get the address.