Menu not expanding when root chosen

More
10 years 5 months ago #42861 by dreamdest
On www.dreamdestinations.travel , on the home page, if you mouse over "about us", the menu expands, but if you click on "about us" and go to the page, that menu no longer expands. thanks.

Please Log in to join the conversation.

More
10 years 5 months ago #42868 by ivan.milic
In index.php of template:

function mainmenu(){
jQuery("#nav ul").css({display: "none"});
jQuery("#nav li").hover(function(){
jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show( '<?php echo $menuAnimationEffect; ?>', {direction:"<?php echo $menudirection; ?>"}, 300 );
},function(){
jQuery(this).find('ul:first').hide( '<?php echo $menuAnimationEffect; ?>', {direction:"<?php echo $menudirection; ?>"}, 200 );
}
);}

chnage to:

function mainmenu(){
jQuery("#nav ul").css({'display': "none"});
jQuery("#nav li").hover(function(){
jQuery(this).find('ul:first').css({'visibility': "visible",'display': "none"}).show( '<?php echo $menuAnimationEffect; ?>', {'direction':"<?php echo $menudirection; ?>"}, 300 );
},function(){
jQuery(this).find('ul:first').hide( '<?php echo $menuAnimationEffect; ?>', {'direction':"<?php echo $menudirection; ?>"}, 200 );
}
);}

Please Log in to join the conversation.

More
10 years 5 months ago #42872 by dreamdest
that didn't work :(
Attachments:

Please Log in to join the conversation.

More
10 years 5 months ago #42877 by ivan.milic
Try to put:

.show()

instead of:

.show( '<?php echo $menuAnimationEffect; ?>', {direction:"<?php echo $menudirection; ?>"}, 300 );
The following user(s) said Thank You: dreamdest

Please Log in to join the conversation.

More
10 years 5 months ago #42878 by dreamdest
that did it! thanks!

Please Log in to join the conversation.

Time to create page: 0.159 seconds
Powered by Kunena Forum