Main Nav Menu and footer disappeared
I was trying to get my child theme to work and I was also removing one of the search bars from the header.php file. Not sure exactly when it happened but when I activated the chile them my nav bar disappeared. I couldn't figure it out so I deactivated the child theme and erased the files. I re activated the parent vantage theme and the nav bar appeared to be back. Then about an hour later I noticed it was gone. I was editing the header.php file, but don't know if that is what did it, although I suspect I did something stupid.
It might be something easy that anyone who knows how php works can spot right away. Here is the file. See anything that might cause my Nav bar to go away?
Here is the site if you need it
http://bankruptcy.getoutofdebt.org
Thanks
<div id="masthead" class="container">
<div class="row">
<hgroup>
<?php va_display_logo(); ?>
</hgroup>
<div class="advert">
<?php dynamic_sidebar( 'header' ); ?>
</div>
</div>
</div>
<div id="main-navigation" class="container">
<div class="row">
<div id="rounded-nav-box" class="rounded">
<div id="rounded-nav-box-overlay">
<?php wp_nav_menu( array(
'theme_location' => 'header',
'container_class' => 'menu rounded',
'items_wrap' => '<ul>%3$s</ul>',
'fallback_cb' => false
) ); ?>
<?php if ( !is_page_template( 'create-listing.php' ) ) : ?>
<form method="get" action="<?php bloginfo( 'url' ); ?>">
<div id="main-search">
<div class="search-location">
<label for="search-location">
<span class="search-title"><?php _e( 'Search For an Attorney by City ', APP_TD ); ?></span><span class="search-help"><?php _e( '', APP_TD ); ?></span>
</label>
<div class="input-cont h39">
<div class="left h39"></div>
<div class="mid h39">
<input type="text" name="location" id="search-location" class="text" value="<?php va_show_search_query_var( 'location' ); ?>" />
</div>
<div class="right h39"></div>
</div>
</div>
<div class="search-button">
<!-- <input type="image" src="<?php echo get_bloginfo('template_directory'); ?>/images/search.png" value="<?php _e( 'Search', APP_TD ); ?>" /> -->
<button type="submit" id="search-submit" class="rounded-small"><?php _e( 'Search', APP_TD ); ?></button>
</div>
</div>
<?php if ( '' != $orderby = va_get_search_query_var( 'orderby' )){ ?>
<input type="hidden" name="orderby" value="<?php echo $orderby; ?>" />
<?php } ?>
<?php if ( '' != $radius = va_get_search_query_var( 'radius' )){ ?>
<input type="hidden" name="radius" value="<?php echo $radius; ?>" />
<?php } ?>
<?php if ( isset( $_GET['listing_cat'] ) ){ ?>
<?php foreach ( $_GET['listing_cat'] as $k=>$listing_cat ) { ?>
<input type="hidden" name="listing_cat[]" value="<?php echo $listing_cat; ?>" />
<?php } ?>
<?php } ?>
</form>
<?php endif; ?>
</div>
</div>
</div>
</div>
<div id="breadcrumbs" class="container">
<div class="row">
<?php breadcrumb_trail( array(
'separator' => '»',
'before' => '',
'show_home' => '<img src="' . get_template_directory_uri() . '/images/breadcrumb-home.png" />',
) ); ?>
</div>
</div>