The page

You probably don't need to make any changes to the HTML of your page. But if you can, please wrap all markup in only one DIV:

<body>
   <div> <!-- the wrapper -->
      <div id="header">
         ...
      </div>
      <div id="content">
      	...
      </div>
      <div id="footer">
      	...
      </div>
   </div>
</body>

If you're using some other element than a DIV, for example a SECTION, you must specify this in the configuration.pageNodetype option:

$("#my-menu").mmenu({
   configuration: {
      pageNodetype: "section"
   }
});

Next up: The mainmenu »