Forum Replies Created

Viewing 1 replies (of 1 total)
  • I’ve read the mentioned thread so many times and searched everywhere. I still can’t find any of the code mentioned in my header.php file. My files all look very different from those posted, but I have the AutoFocus theme.

    Do I still just replace the

    <div id=”header”>

    <?php

    // action hook creating the theme header
    thematic_header();

    ?>

    </div><!– #header–>

    with

    <div id=”header”>
    <h1 id=”blog-title”><img src=”<?php bloginfo(‘template_url’); ?>/img/logo.png border=”0″ alt=”logo”></h1>
    <div id=”blog-description”><?php bloginfo(‘description’) ?></div>
    </div><!– #header –>

    My entire header.php file looks like this:

    <?php

    // Creating the doctype
    thematic_create_doctype();
    echo ” “;
    language_attributes();
    echo “>\n”;

    // Creating the head profile
    thematic_head_profile();

    // Creating the doc title
    thematic_doctitle();

    // Creating the content type
    thematic_create_contenttype();

    // Creating the description
    thematic_show_description();

    // Creating the robots tags
    thematic_show_robots();

    // Creating the canonical URL
    thematic_canonical_url();

    // Loading the stylesheet
    thematic_create_stylesheet();

    // Creating the internal RSS links
    thematic_show_rss();

    // Creating the comments RSS links
    thematic_show_commentsrss();

    // Creating the pingback adress
    thematic_show_pingback();

    // Enables comment threading
    thematic_show_commentreply();

    // Calling WordPress’ header action hook
    wp_head();

    ?>

    </head>

    <?php

    if (apply_filters(‘thematic_show_bodyclass’,TRUE)) {
    // Creating the body class
    ?>

    <body class=”<?php thematic_body_class() ?>”>

    <?php }

    // action hook for placing content before opening #wrapper
    thematic_before(); ?>

    <div id=”wrapper” class=”hfeed”>

    <?php

    // action hook for placing content above the theme header
    thematic_aboveheader();

    ?>

    <div id=”header”>

    <?php

    // action hook creating the theme header
    thematic_header();

    ?>

    </div><!– #header–>

    <?php

    // action hook for placing content below the theme header
    thematic_belowheader();

    ?>

    <div id=”main”>

Viewing 1 replies (of 1 total)