Hello,
I finaly code this, in case it could help someone. It’s not yet perfect but, for me, better than without.
Just put it in custom JS of theme options, and change “menu-menu-par-activite-1” by yours. You can see the result here : mouskif.ch
<script>
jQuery(document).ready( function ($) {
$('#container').append('<div id="vh-menu-shadow" style="position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; background-color: rgb(0,0,0); z-index: 1; opacity: 0;display:none;"></div>');
});
jQuery(document).ready( function ($) {
$('#menu-menu-par-activite-1').hover(
function() {
$('#vh-menu-shadow').fadeTo(400,0.5);
},
function() {
$('#vh-menu-shadow').fadeOut(500);
}
);
});
</script>
Regards
Vince