• tauciukas

    (@tauciukas)


    Hello,

    First of all awesome template.

    So I can easily add 1 logo, but I also need another logo above the tag line on the left side.

    I’ve been searching through code but haven’t found any luck yet.

    Can anyone help how to add image in the header to the top left corner ?

    to be specific I found location of the tagline

    <h2 class=”span7 inside site-description”….

    under row-fluid class

Viewing 1 replies (of 1 total)
  • Menaka S.

    (@menakas)

    Hi tauciukas,
    Please post your site’s url. It is easier for us to work on.
    Meanwhile, try adding this to your child theme’s functions.php.
    Change the url of the image as you wish.

    add_filter( 'tc_tagline_display' , 'my_logo_in_tagline');
    function my_logo_in_tagline() {
    	global $wp_current_filter;
    	?>
    		<?php if ( !in_array( '__navbar' , $wp_current_filter ) )  :?>
    			<div class="container outside">
    		        <h2 class="site-description">
    		        	<img src="https://s.w.org/style/images/wp-header-logo.png" /><br/>
    					<?php bloginfo( 'description' ); ?>
    
    		        </h2>
    
    		    </div>
    		<?php else : //when hooked on __navbar ?>
    			<h2 class="span7 inside site-description">
    				<img src="https://s.w.org/style/images/wp-header-logo.png" /><br/>
    	            <?php bloginfo( 'description' ); ?>
    	        </h2>
    
    		<?php endif; ?>
    	<?php
    }
Viewing 1 replies (of 1 total)
  • The topic ‘adding logo in the header’ is closed to new replies.