Since I know nothing of php and don’t have time to learn it, I am looking for a minor fix for the code below. The logo in the top left of my main website page http://www.safehousefsi.com is supposed to be inline with the navigation bar. The author won’t fix it and I need it done. Can anyone help me out?
[php]<!doctype html>
> <?php wp_title(); ?> <?php wp_head(); ?> ><!--headercontainer-->
<div id="header_container">
<!--header-->
<div class="row">
<div class="twelve columns">
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) { ?>
<div id="logo"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
</a></div><!--logo end-->
<?php } else { ?>
<div id="logo2"><a href="<?php echo esc_url(home_url()); ?>" title="<?php bloginfo('description'); ?>"><?php bloginfo( 'name' ); ?></a></div><!--logo end-->
<?php } ?>
<!--top menu-->
<div id="menu_container">
<?php $navcheck = '' ; ?>
<?php $navcheck = wp_nav_menu( array( 'container_class' => 'menu-header2', 'theme_location' => 'primary' , 'menu_id' => 'nav', 'fallback_cb' => '', 'echo' => false ) ); ?>
<?php if ($navcheck == '') { ?>
<ul id="nav">
<li <?php if (is_home()) { echo " class=\"current_page_item\""; } ?>><a href="<?php echo esc_url(home_url()); ?>" title="Home">Home</a></li>
<?php wp_list_pages('title_li=&sort_column=menu_order'); ?>
</ul>
<?php } else echo($navcheck); ?>
</div>
</div>
</div>
</div><!--header container end--> [/php]