I'm trying to add an image as a secondary header just below the navigation using the belowheader() hook. I've added the html and I can get text to show up, but when I place an image in the div, it doesn't show up.
This is my first time using Thematic and the first custom function I've written, so there's probably something very simple that I'm doing wrong. Here's the code I'm trying to use:
// Adds secondary header image
function secondary_header() { ?>
<div class="secondary-header">
<img src="images/main-image-01.jpg">
</div>
<?php }
add_action('thematic_belowheader','secondary_header')