• Hey, I was messing with the code trying to replace my logo image, and now I can’t get any image to show! It’s only showing the text link. Here is the code for the header now. Can anyone help with what is missing???

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>

    <head profile=”http://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <meta name=”robots” content=”index,follow” />
    <meta http-equiv=”Content-Language” content=”de” />
    <meta name=”author” content=”webdemar” />
    <meta name=”copyright” content=”Copyright © 2008 webdemar, All Rights Reserved” />
    <meta name=”revisit-after” content=”7 Days” />

    <title>
    <?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_search() ) { ?><?php echo $s; ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_single() ) { ?><?php wp_title(”); ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_page() ) { ?><?php wp_title(”); ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_category() ) { ?>Archive <?php single_cat_title(); ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_month() ) { ?>Archive <?php the_time(‘F’); ?> | <? bloginfo(‘name’); ?><?php } ?>
    <?php if ( is_tag() ) { ?><?php single_tag_title();?> | <? bloginfo(‘name’); ?><?php } ?>
    </title>

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <link rel=”alternate” type=”application/rss+xml” title=”RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />

    <?php wp_head(); ?>

    </head>

    <body>

    <div id=”page”>

    <div id=”header”>

      <li class=”header_logo”>“><img src=”
      <li class=”page_item <?php if ( is_home() ) { ?>current_page_item<?php } ?>”>

      <?php wp_list_pages(‘title_li=&depth=1’); ?>

    <div class=”clear”></div>

    </div><!– end header –>

The topic ‘Logo Image will not display’ is closed to new replies.