There is a bit of a trend for the opening of mega menus in a 'Lightbbox' type effect.
This is easy to do with SellerDeck.
1. Paste this into your css:
2. In responsive outer layout just before <div class="navigation-bar"> paste:
Open the Mega Menu layout and at the end, just after </div><div style="clear:left"></div> paste:
Enjoy!
This is easy to do with SellerDeck.
1. Paste this into your css:
Code:
#mm-nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 211;
display: none
}
Code:
<style>
#mm-nav-overlay {
background-color: #000000;
opacity: 0.6;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60.00000238418579)";
}
</style>
<script>
$(document).ready(function() {
$("#mega-menu").mouseenter(function() {
$("#mm-nav-overlay").toggle();
}).mouseleave(function () {
$("#mm-nav-overlay").hide();
});
});
</script>
Code:
<div style="display:none;" id="mm-nav-overlay"></div>
Comment