Image logo AND title logo Posted in : Bloggy WP joanbaggeParticipant 21 January 2014 at 02:32 #11621 Hello! Is it possible to have both an image logo and title logo ? My site is: http://www.baggeswinkel.net I would like to have the title logo (name of the site) under the image logo that I’ve put up. Mehmet S.Keymaster 21 January 2014 at 05:24 #11632 Hi, you need to edit your header.php file. Just remove the condition and use them both on your site. Thanks joanbaggeParticipant 21 January 2014 at 12:30 #11645 Hello, thanx for your quick response! I’ve been looking trough the header.php but I can’t seem to figure out what it is I have to remove, can you help? Mehmet S.Keymaster 22 January 2014 at 02:03 #11666 Find the code block: <h1 class="site-title"> ... ... ... </h1> <!-- end .site-title --> Edit its inside: <h1 class="site-title"> <a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>"> <img alt="<?php bloginfo( 'name' ); ?>" src="<?php echo get_option( 'logo_image', "" ); ?>"> </a> <?php $select_text_logo = get_option( 'select_text_logo', 'WordPress Site Title' ); if ( $select_text_logo == 'WordPress Site Title' ) { $text_logo_out = get_bloginfo( 'name' ); } else { $text_logo_out = stripcslashes( get_option( 'theme_site_title', "" ) ); } ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php echo $text_logo_out; ?></a> </h1> <!-- end .site-title --> Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in and have valid license to reply to this topic. License required for the following item Bloggy WP - Responsive Minimalist WordPress Themeby pixelwars Login and Registration Log in · Register