The drop down navbar on this mini site is from our free navbar collection. It's actually the same menu sytem we use on our main website.
The navbar kits which we provide demos for can be downloaded in zip packages and then added by plugging the style sheet into the head section and copying the HTML from the demo page which is included.
The kits also include the lmenu replacement page and the html and css for using it. We used the lmenu system on our main website until just recently when we began experimenting with the Toggle Menu we use in this template kit.
Toggle Menu
The replacement menu that kicks in for smaller devices uses a very simple javascript snippet that toggles an iframe in and out of display mode.
The replacement menu is activated by a Media Query at the point where the drop down menu list items run out of viewing space.
You have the option of using the original lmenu system if you desire.
Reverse the display options in the bottom of the navbar style sheet.
@media (max-width: 850px) {
/*Hide Drop Down Menu*/
nav.navigate7 {display:none}
/*Show or Hide lmenu*/
div.lmenu {display: none }
/*Show or Hide Toggle Button */
div.main div.iframemenu {display: block;}
}