- Posts: 16
- Thank you received: 0
Menu - Animation effects "none" has noc effect
-
hews
Inactive member - Topic Author
- New Member
Less
More
10 years 2 months ago #43098
by hews
Menu - Animation effects "none" has noc effect was created by hews
Hello,
The Menu Script Settings: animation effect "none" has no effect.
When I scroll down, the menu still fades in.
Here:
www.your-website-service.de/
or here:
www.your-website-service.de/index.php/massageangebot
Another question is, where to set the color of the logo text when the menu fades in.
The menu text changes the color automatically to black. The color of the logo text does not change an is unreadable on white background.
Thank your very much for your advice.
Hews
The Menu Script Settings: animation effect "none" has no effect.
When I scroll down, the menu still fades in.
Here:
www.your-website-service.de/
or here:
www.your-website-service.de/index.php/massageangebot
Another question is, where to set the color of the logo text when the menu fades in.
The menu text changes the color automatically to black. The color of the logo text does not change an is unreadable on white background.
Thank your very much for your advice.
Hews
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 2 months ago #43129
by ivan.milic
Replied by ivan.milic on topic Menu - Animation effects "none" has noc effect
In /templates/hot_bokeh/js/jquery.hjt.navv.js
jQuery('.navv ul').hide();
jQuery('.navv li ul li').filter(':last-child').css('border-bottom', 'none');
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first').stop(true,true)[options.effect](options.speed);
});
replace with:
jQuery('.navv ul').hide();
jQuery('.navv li ul li').filter(':last-child').css('border-bottom', 'none');
jQuery('.navv li').hover(function(){
if(jQuery(this).find('ul:first')[0])
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative');
if(jQuery(this).find('ul:first')[0])
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
});
jQuery('.navv ul').hide();
jQuery('.navv li ul li').filter(':last-child').css('border-bottom', 'none');
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first').stop(true,true)[options.effect](options.speed);
});
replace with:
jQuery('.navv ul').hide();
jQuery('.navv li ul li').filter(':last-child').css('border-bottom', 'none');
jQuery('.navv li').hover(function(){
if(jQuery(this).find('ul:first')[0])
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative');
if(jQuery(this).find('ul:first')[0])
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
});
Please Log in to join the conversation.
Time to create page: 0.147 seconds