Disable top menu over effect

When you put the mouse over any menu item, there is an effect with a black background with opacity. I’ve looked for this opacity and transition effect both in styles.css and jmmegamenu.css whithout success.

How can I disable this effect? I only want to show child items.

Thank you!

5 answers

Profile photo of tomc 0.00 $tone January 31, 2014
Public

To which menu items are you referring?

It would be helpful if you could provide the url of the site you’re working on, as well as identify which menu item(s) you are seeing this effect.

#1
Profile photo of Sherlock 0.00 $tone February 11, 2014
Public

You can open the skin/front-end/default/jm_crafts/js/jm.script.js file, then find and remove the following code block:

HTML Code:

  jQuery("ul.level0").children("li.haschild").hover(function(){
           if(jQuery("#jmoverlay").length <= 0){
				jmoverlay = jQuery('<div id="jmoverlay" class="jmoverlay"></div>'); 
				jmoverlay.appendTo('#ja-header .main');
			}	    
	 },function(){
           if(jQuery("#jmoverlay").length){
				jQuery("#jmoverlay").remove();
			}  
			
          
	 })

Let me know if it helps.

#3

This question is now closed

Written By

Comments