I did the following to remove the 'large' mobile menu, and replace it with the 'regular' menu:
You need to deactivate the default menu fallback in js/avia.js - delete following code:
// improves menu for mobile devices
jQuery('.main_menu ul:eq(0)').mobileMenu({
switchWidth: 768, //width (in px to switch at)
topOptionText: jQuery('.main_menu').data('selectname'), //first option text
indentString: ' ' //string for indenting nested items
});
Then add following code to css/custom.css:
#top .mobileMenu {
display: none !important;
}
.js_active .main_menu ul {
display: block !important;
}
But now, when a page first 'loads up' the drop-down menu for "Template Files" shows for a half-second then goes away (with both Safari and Chrome on an iPhone with iOS6, and Firefox on an Android tablet with 4.04). [Doesn't happen on Mac or PC computer browsers---only mobile]:
http://visualimpact.us/wordpress/
Also (only on mobile) the top of the "+", "-", "x" box covers up the bottom of the filtered categories when 'ajaxed':
http://visualimpact.us/wordpress/web-sites-test-page/
Thanks,
Mark














