File: D:/HostingSpaces/budilia/budilia.nl/wwwroot/wp-content/themes/zeestyle/header.php
<!DOCTYPE html><!-- HTML 5 -->
<html <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<title><?php wp_title('|', true, 'right'); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper">
<div id="header">
<div id="logo">
<?php
$options = get_option('themezee_options');
if ( isset($options['themeZee_general_logo']) and $options['themeZee_general_logo'] <> "" ) { ?>
<a href="<?php echo home_url(); ?>"><img src="<?php echo esc_url($options['themeZee_general_logo']); ?>" alt="Logo" /></a>
<?php } else { ?>
<a href="<?php echo home_url(); ?>/"><h1><?php bloginfo('name'); ?></h1></a>
<h2 class="tagline"><?php echo bloginfo('description'); ?></h2>
<?php } ?>
</div>
<div id="navi">
<?php
// Get Navigation out of Theme Options
wp_nav_menu(array('theme_location' => 'main_navi', 'container' => false, 'menu_id' => 'nav', 'echo' => true, 'fallback_cb' => 'themezee_default_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'depth' => 0));
?>
</div>
</div>
<div class="clear"></div>
<div id="custom_header">
<?php if(is_page() && has_post_thumbnail()) :
the_post_thumbnail(array(940,140));
elseif( get_header_image() != '' ) : ?>
<img src="<?php echo get_header_image(); ?>" />
<?php endif; ?>
</div>
<div id="wrap">