Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there!

    The first thing you need to do is to set up a child theme for your site. You can find instructions here.

    Then, copy the header.php file from the parent theme into your child theme.

    Under this line <?php elseif ( get_bloginfo( 'description' ) || get_bloginfo( 'title' ) ) : ?> in the header.php file add in the code for your logo:

    For example:

    <div class="mylogo"><img class="thelogo" src="http://www.photistoric.com/mylogo.png" alt=""></div>

    Then you can adjust the layout using CSS.

    For example:

    .mylogo {
      float: left;
      width: 150px;
    }
    
    .thelogo {
      width: 35%;
    }

    But this will depend on the size of your logo image.

    I hope that helps a bit!

    Luke the Daft Duke

    Thread Starter william-flynn

    (@william-flynn)

    Worked like a charm! Thanks Luke.

    Thread Starter william-flynn

    (@william-flynn)

    I have a follow up question:

    Can I make the logo disappear when a user is accessing the site from a mobile device?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to add logo to left of site title?’ is closed to new replies.