Support » Themes and Templates » Putting my image in the header of this theme

  • I don’t even know where to start. I googled this question and only came up with things that I didn’t understand.

    My site is: http://www.tinawann.com

    My header code is: `<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”&gt;
    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; xml:lang=”en” lang=”en”>

    <head>

    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />

    <title><?php
    if (is_home()) {
    echo bloginfo(‘name’);
    } elseif (is_404()) {
    echo ‘404 Not Found’;
    } elseif (is_category()) {
    echo ‘Category:’; wp_title(”);
    } elseif (is_search()) {
    echo ‘Search Results’;
    } elseif ( is_day() || is_month() || is_year() ) {
    echo ‘Archives:’; wp_title(”);
    } else {
    echo wp_title(”);
    }
    ?>
    </title>

    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”<?php bloginfo(‘url’); ?>/xmlrpc.php?rsd” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <!–[if lte IE 7]>
    <link href=”<?php bloginfo(‘template_directory’); ?>/ie.css” type=”text/css” rel=”stylesheet” media=”screen” />
    <![endif]–>
    <?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ );?>
    <?php wp_head(); ?>
    </head>

    <body>

    <div id=”header”>

    <div id=”blog_title”>
    <div id=”cap”>
    <span class=”skip”>» skip to content «</span>
    <span class=”feeds”>“>rss §
    “>atom §
    “>rdf
    </span>
    </div>

    <h1><?php bloginfo(‘name’); ?></h1>
    <p class=”description”><?php bloginfo(‘description’); ?></p>
    <div id=”search”>
    <?php include (TEMPLATEPATH . ‘/searchform.php’); ?></div>
    </div>

    <div id=”topnav”>

      <li class=”home <?php if ( is_home()) { echo ‘current”‘; } else {echo ‘”‘; } ?>>“>Home
      <?php wp_list_pages(‘title_li=&depth=1’); ?>

    </div>

    </div>`

    The image I want to use as my header is: http://www.tinawann.com/Blog%20Images/website.jpg

    Can someone help me?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Putting my image in the header of this theme’ is closed to new replies.