2013-08-19, 17:44:49
In the header.inc.php file, the relevant portion of the header is lines 42-55:
PHP Code:
<div class="header">
<div class="wrapper">
<!-- logo/sitename -->
<a href="<?php get_site_url(); ?>" id="logo" ><?php get_site_name(); ?></a>
<!-- main navigation -->
<nav id="main-nav">
<ul>
<?php get_i18n_navigation(get_page_slug(false), $minlevel=0, $maxlevel=0, $show=I18N_SHOW_NORMAL, $component='customnav') ?>
</ul>
</nav>
</div>
</div>