I tried it on my local site first.....good thing!;)
I tried it on my local site first.....good thing!;)
is it possible to hover level2 when level3 is hovered?
I mean to hover Dame on this image
![]()
I have this installed in V1.5 and works great, i was just wondering though if it is possible to change some settings so the flyout occurs a little smoother ?
Thank you
windsurfer - Get Em Fast would have to advise on that, as it would probably involve the jQuery effects.
Loter - To get hover effects on the higher items in the tree, find in your stylesheet_categories_menu.css the rule like this
and add a rule above it to get thisCode:#nav-cat li a:hover { color: #FFFFFF; background-color: #000000; }
Adjust properties to fit your situation.Code:#nav-cat li:hover>a { color: #FFFFFF; background-color: #a00000; } #nav-cat li a:hover { color: #FFFFFF; background-color: #000000; }
I buyed a template from template monster, but after the changes we have made to this template we have a problem with hover menu. Now the menu must be on 2 rows as seen here:
http://kronemag.de/shop1/
Here you can find how it looked before:
http://www.templatemonster.com/zenca...tes/37597.html
The question is : Can we delay the drop down of the menu on mouse over?
This is how includes/templates/theme592/jscript/jscript_xdropdown_menu.js looks like:
//script added by Get Em Fast Web Designs
var isAnimating = false;
var $toClose = null;
$(function () {
$('#dropMenu .level1 .submenu.submenu').hover(function() {
if (!isAnimating) {
$(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).slideUp(500);
$(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li').stop(true, true).slideDown(200);
isAnimating = true;
}
}, function() {
$toClose = $(this).find('ul.level2,.level3 li,.level4 li,.level5 li,.level6 li');
setTimeout(function(){if($toClose!=null){
$($toClose).stop(true, true).slideDown(500);
$($toClose).stop(true, true).slideUp(200);
$toClose = null;
isAnimating = false;
}}, 200);
});});
Can anyone help? Thank you.
Wrong support thread for this menu.. Looks like the good folks at Template Monstrosity oops I mean Template Monster "borrowed" the code from the CSS dropdown menu.. (which I'm sure they fully disclosed.. yeah right..) You need to post question sin that support thread.. However, I'd suggest downloading the add-on and READING the readme which should provide some insight on how to manipulate the speed of the dropdown..
My Site - Zen Cart & WordPress integration specialist
I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.