Figured out a workaround.
$(document).ready(function() {
$( '#header' ).hover(
function(){
$('.sub-menu').delay(250).fadeIn(500);
},
function(){
$('.sub-menu').stop(true).hide(0);
}
);
}); // end ready
$(document).ready(function() {
$( '#header' ).hover(
function(){
$('#header').height('400px');
},
function(){
$(' #header').height('137px');
}
);
});
My issue is that when the cursor isn’t hovering over the list item the whole sub-menu fades out, but just for the one column. I’m assuming this is because the theme is coded to do so.
According to the jq the menus should be visible until the out state for #menu
Suggestions?
-M