Use image instead of text for site title

I am trying to create a clickable banner image for my site. That is, I want an image to replace the site title text while preserving its linkability.

I am using the Santa Fe theme. My hack was to replace <?php echo link_to_home_page(); ?></div> with and <img> codes. Is there a more elegant way to do this using link_to_home_page()?

You can pass any text you want, including the HTML to display your image, as a parameter to link_to_home_page().

So, you could do something like:

<?php echo link_to_home_page('<img src="myimage.png" />'); ?>

Also, while Santa Fe doesn't support this, several Omeka themes allow you to configure the theme on the admin panel and simply choose an image that will replace the site title.