Forum Replies Created

Viewing 1 replies (of 1 total)
  • Simple solution to fix this problem on free version that worked for my drop down menus:

    <style>
    	.hide-zoom-zontainer{
    		display: none !important;
    	}
    </style>
    <script >
    	jQuery('#your-menu li').hover(
    		function(){
    			jQuery('.zoomContainer').addClass('hide-zoom-zontainer');
    		},
    		function(){
    			jQuery('.zoomContainer').removeClass('hide-zoom-zontainer');
    		}
    	)
    </script>
    • This reply was modified 9 years, 2 months ago by dkatwitt.
Viewing 1 replies (of 1 total)