On shakymolars.com, the php menu does not show up at all in Internet Explorer 7 or 8.
header.php:
<nav>
<ul>
<li><?php wp_nav_menu(array('menu' => 'Main Nav Menu')); ?></li>
</ul>
</nav>
functions.php:
if (function_exists('register_nav_menus')) {
register_nav_menus(
array(
'main.nav' => 'Main Navigation Menu'
)
);
}
Any ideas why? It seems to show up in all the other browsers just fine.