Yup, this is the code from the header.php file.
`<!– OPEN #main-navigation –>
<nav id=”main-navigation”>
<?php
if(function_exists(‘wp_nav_menu’)) {
wp_nav_menu(array(
‘theme_location’ => ‘Main_Navigation’,
‘fallback_cb’ => ‘wp_page_menu’,
‘menu’ => ‘Navigation’
)); }
?>
<!– CLOSE #main-navigation –>
</nav>
<!– OPEN #mobile-navigation –>
<nav id=”mobile-navigation”>
<span class=”selected-option”><?php _e(“- Menu -“, “swiftframework”); ?></span>
<?php
dropdown_menu( array(
‘theme_location’ => ‘Main_Navigation’,
‘fallback_cb’ => ‘wp_page_menu’,
‘menu’ => ‘Navigation’,
// You can alter the blanking text eg. “- Navigate -” using the following
‘dropdown_title’ => ‘– Menu –‘,
// indent_string is a string that gets output before the title of a
// sub-menu item. It is repeated twice for sub-sub-menu items and so on
‘indent_string’ => ‘- ‘,
// indent_after is an optional string to output after the indent_string
// if the item is a sub-menu item
‘indent_after’ => ”
) );
?>
<!– CLOSE #mobile-navigation –>
</nav>`