Roots theme logo problem

Hi there i am very new to roots theme. It doesnt look like the themes I used before. I need to change the logo. I want to add a logo to my template. I found this toic before https://groups.google.com/forum/#!topic/roots-theme/a2rPRuyu9O0 but none of the solutions worked for me.

I know its a silly question for you but as a beginner not for me.

Thank you all.

You can do image replacement as shown by Ben in that thread, just use the updated class name for that element: .navbar-brand. Just look up “css image replacement” for more details on this.

Alternate other option is to just swap the text out for an img element in your /templates/header-top-navbar.php file, just retain the “blog name” as the image alt text:

<a class="navbar-brand" href="<?php echo home_url(); ?>/">
    <img src="/path/to/logo.png" alt="<?php bloginfo('name'); ?>" />
</a>