How to change logo in Answerbox

Solved4.20K viewsThemesanswerbox theme
0

I’m probably just being stupid, but how do I change the logo in Answerpress? I can’t find the css that displays the logo.

1
// find this in header.php line 34
<a class="site-title navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" title="<?php bloginfo( 'name' ); ?>">
	<i class="i-logo"></i>
</a>

// now replac it with:
<a class="site-title navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" title="<?php bloginfo( 'name' ); ?>">
	<img src="<?php echo get_template_directory_uri(); ?>/images/logo.png" />
</a>

Thanks Rahul that should change the logo. I meant to ask this earlier.