How to change logo in Answerbox
// 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.