This might not work with all pages or might cause a problem while working on others. But if you have just the hv and ufade scripts, it should be fine. Add this style section to the head:
Code:
<style type="text/css">
.hvmenu, .hvmenu * {
position: relative;
z-index: 1100 !important;
}
</style>
And add this script as the very last thing before the closing </body> tag:
Code:
<script type="text/javascript">
;(function($){
$(window).load(function(){
var hv;
$('div').each(function(){
if(this.innerHTML === 'Home'){//set to 'Text to show' of very first hvmenu item (Menu1)
hv = $(this.parentNode);
return false;
}
});
while((hv = hv.addClass('hvmenu').next('div'))){
if(!hv.size()){break;}
}
});
})(jQuery);
</script>
</body>
</html>
If your first menu item isn't 'Home', change it where indicated in the above code.
If you want more help:
Please post a link to a page on your site that contains the problematic code so we can check it out.
Bookmarks