This is website I am working on abraham-accountants.co.uk. However the logo appear on all the web pages but not on the homepage.
This php code I used to add logo in and uploaded logo file to ftp server.
// Display Site Title
add_action( 'smartline_site_title', 'smartline_display_site_title' );
function smartline_display_site_title() { ?>
<div class='my-logo'>
<img src="<?php bloginfo('template_directory');?>/images/AA.gif">
</div>
<a href="<?php echo esc_url(home_url('/')); ?>"
title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"
rel="home">
<h1 class="site-title"><?php bloginfo('name'); ?></h1>
</a>
<?php
}
This was done on template-tag php file for smartline lite theme.
try this code by adding to functions.php in your themes folder,