Hi @tcross2013
To do this you’d need to edit the theme file directly.
Edit the header.php file in the simplemarket folder.
Around line 52 you will see the following:
<div id="site-logo">
<h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name'); ?></a></h1>
</div>
Change the “<?php bloginfo(‘name’); ?>” to an img tag containing the location of the image, something like this:
Around line 52 you will see the following:
<div id="site-logo">
<h1><a href="<?php echo home_url(); ?>"><img src="/logo.png" alt="" /></a></h1>
</div>
Hope this helps!
Cheers,
Mike