I want to add a new div/image to the header, but I want it to come before the access div. (more precisely, between the blog-title h1 and the blog-desc h2)
I tried this:
<?php
function my_add_header_image() { ?>
<div class="div-header-image"><img src="<?php bloginfo('stylesheet_directory') ?>/images/banner.jpg" title="Evaluation by Design" id="imgHeader" /></div>
<?php
}
//add_action('thematic_header', 'my_add_header_image');
?>
but that puts it after the access. Probably easy for some of you seasoned 'thematicors' but I'm stuck on it.
Thanks.