ThemeZee - Logo neben Überschrift
Hallo,
ich nutze das Theme: Design ThemeZee.
Nun würde ich gerne links neben der Überschrift mit ca. 1cm Abstand zur Überschrift ein Logo platzieren.
Die Theme optionen sind leider unzureichend :/
Hätte jemand eine Idee wie man das am geschicktesten im Header einbaut?
Hier nochmal ein Link mit einer Grafik wie ich mir das dachte:
http://img69.imageshack.us/img69/3406/log…gewordpress.png
Gruß mimo
Anbei der header Code:
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 bloginfo('name'); if(is_home() || is_front_page()) { echo ' - '; bloginfo('description'); } else { wp_title(); } ?></title>
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper">
<div id="header">
<div id="head">
<div id="logo">
<?php
$options = get_option('themezee_options');
if ( isset($options['themeZee_logo']) and $options['themeZee_logo'] <> "" ) { ?>
<a href="<?php echo home_url(); ?>"><img src="<?php echo esc_url($options['themeZee_logo']); ?>" alt="Logo" /></a>
<?php } else { ?>
<a href="<?php echo home_url(); ?>/"> <h1><?php bloginfo('name'); ?></h1></a>
<?php } ?></div>
<div id="socialmedia_icons">
<?php if ( isset($options['themeZee_socialmedia_header']) and $options['themeZee_socialmedia_header'] == 'true' ) {
locate_template('/includes/plugins/theme_socialmedia_header.php', true);
} ?>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div id="navi_container">
<div id="navi">
<?php
// Get Top Navigation out of Theme Options
wp_nav_menu(array('theme_location' => 'navi', 'container' => false, 'echo' => true, 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'depth' => 0));
?>
</div>
</div>
<div class="clear"></div>
</div>
<div id="container">
<?php if( get_header_image() != '' ) : ?>
<div id="custom_header">
<?php if(function_exists('show_media_header')){ show_media_header(); } ?>
</div>
<?php endif; ?>
Alles anzeigen