Why I can’t see my logo appear Homepage?

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.

Read More
// 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.

Related posts

1 comment

  1. try this code by adding to functions.php in your themes folder,

    function my_logo() {
    echo '<style type="text/css">
    h1 a { background-image:url('.get_bloginfo('template_directory').'/images/your-logo.png) !important; }
    </style>';
    }
    add_action('login_head', 'my_logo');
    

Comments are closed.