• I have installed what I think is a really awesome theme on my site and am not going through the growing pains of getting it working – it is a quantum leap above my present knowledge level…but I like it that way – keeps life interesting ??

    I cannot figure out where the graphic file is for the header. My site is https://www.hischopsticks.org/wordpress

    I have looked through the header sheet and page sheet and cannot see any graphic file extensions – whether jpg or png. Any ideas? The css is already set up for text in the header. I have included the coding for the header sheet below:

    <?php load_theme_textdomain(‘branfordmagazine’); ?>
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html xmlns=”https://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>
    <head profile=”https://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <?php
    echo ‘ <title>’;
    if ( is_home() ) {
    // Blog’s Home
    echo get_bloginfo(‘name’) . ‘ » ‘; bloginfo(‘description’) ;
    } elseif ( is_single() or is_page() ) {
    // Single blog post or page
    wp_title(”); echo ‘ – ‘ . get_bloginfo(‘name’);
    } elseif ( is_category() ) {
    // Archive: Category
    echo get_bloginfo(‘name’) . ‘ » ‘; single_cat_title();
    } elseif ( is_day() ) {
    // Archive: By day
    echo get_bloginfo(‘name’) . ‘ » ‘ . get_the_time(‘d’) . ‘. ‘ . get_the_time(‘F’) . ‘ ‘ . get_the_time(‘Y’);
    } elseif ( is_month() ) {
    // Archive: By month
    echo get_bloginfo(‘name’) . ‘ » ‘ . get_the_time(‘F’) . ‘ ‘ . get_the_time(‘Y’);
    } elseif ( is_year() ) {
    // Archive: By year
    echo get_bloginfo(‘name’) . ‘ » ‘ . get_the_time(‘Y’);
    } elseif ( is_search() ) {
    // Search
    echo get_bloginfo(‘name’) . ‘ » ‹’ . wp_specialchars($s, 1) . ‘›’;
    } elseif ( is_404() ) {
    // 404
    echo get_bloginfo(‘name’) . ‘ » 404 – ERROR’;
    } else {
    // Everything else. Fallback
    bloginfo(‘name’); wp_title();
    }
    echo ‘</title>’;
    ?>

    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” />
    <!– leave this for stats –>

    <?php wp_head(); ?>

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>”type=”text/css” media=”screen” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/styles/nav.css” type=”text/css” media=”screen” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/styles/plugins.css” type=”text/css” media=”screen” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/styles/template-style.css” type=”text/css” media=”screen” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/styles/print.css” type=”text/css” media=”print” />
    <link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/styles/ui.tabs.css” type=”text/css” media=”screen” />

    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/js/jquery-1.2.2.pack.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/js/dropdowns.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/js/ui.tabs.pack.js”></script>
    <script type=”text/javascript”>
    var $j = jQuery.noConflict();
    $j(function() {
    $j(‘#container-4 ul’).tabs({ fxFade: true, fxSpeed: ‘fast’ });
    $j(‘#container-11 ul’).tabs({ event: ‘mouseover’ }).find(‘a’).click(function() {
    return false;
    });
    });
    </script>

    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    </head>
    <body<?php if ( is_home() ) { ?> id=”home”<?php } ?>>
    <div id=”page” class=”clearfloat”>
    <div class=”clearfloat”>
    <div id=”branding” class=”left” onclick=”location.href='<?php echo get_settings(‘home’); ?>’;” style=”cursor: pointer;”>
    <div class=”blogtitle” >/”>
    <?php //bloginfo(‘name’); ?>
    </div>
    <div class=”description”>
    <?php //bloginfo(‘description’); ?>
    </div>
    </div>
    <div class=”right”>
    <?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
    </div>
    </div>
    <ul id=”nav” class=”clearfloat”>

Viewing 3 replies - 1 through 3 (of 3 total)
  • its probably in your stylesheet.

    Thread Starter pengyou

    (@pengyou)

    Thanks! I just got it….boy, there is sooooooooooooooooooo much stuff to wade through to make one of these things look really nice!!!! Is there any kind of online editor? I wish I had at least a search function when reading through the code.

    are you using the theme editor in the admin? You shouldn’t do that. Get a decent text editor, make edits via FTP on your computer.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Where is the graphic for the header likely to be stored?’ is closed to new replies.