Viewing 1 replies (of 1 total)
  • Mike

    (@michael-copestake)

    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

Viewing 1 replies (of 1 total)
  • The topic ‘Substitute logo for site title’ is closed to new replies.