I used the service Mobify (www.mobify.com) to create a mobile version of my site. I have done everything I wish to do, except edit my menu. I would like to remove a few items from the menu and/or add submenu items. If someone has any familiarity with Mobify I would really appreciate the help.
Edit
<nav id="x-navigation">
<div>
<ul>
{! We decend into the header object, and use {.} to iterate through each element in navigation !}
{#header}
{#navigation}
<li>{.}</li>
{/navigation}
{/header}
</ul>
</div>
</nav>
When you extract your menu, I'm guessing you're doing something like this:
But you can actually have more advanced selectors! For example, if your menu looked like this:
And if you only wanted the first two anchors, you could do something like this:
Or if you only wanted "Home" and "Contact" anchors:
Those are just a couple of examples of what you can do. In reality you can do anything that Javascript and Zepto allow!