• Site: http://www.gamebynight.com

    I have a problem. My blog allows me to use an image header, which I do and features the blog title. I had previously just left the blog title blank under settings but I’ve found that this makes Feedly default to displaying just my URL. This looks unprofessional. Is there a way for me to keep my blog title and description set in the settings but remove the call for it to appear above my header image?

    Thanks!
    Chris

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter gamebynight1

    (@gamebynight1)

    This is the bit of header I have isolated but I’m not sure if removing this will also impact what gets output into the feed

    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="viewport" content="width=device-width" />
    <title><?php
    	/*
    	 * Print the <title> tag based on what is being viewed.
    	 */
    	global $page, $paged;
    
    	wp_title( '|', true, 'right' );
    
    	// Add the blog name.
    	bloginfo( 'name' );
    
    	// Add the blog description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		echo " | $site_description";
    
    	// Add a page number if necessary:
    	if ( $paged >= 2 || $page >= 2 )
    		echo ' | ' . sprintf( __( 'Page %s', 'skirmish' ), max( $paged, $page ) );
    
    	?></title>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
    
    <?php wp_head(); ?>
    </head>

    Please post in your theme’s dedicated forum:

    http://wordpress.org/support/theme/skirmish

    the posted code section is for the meta title which would show in the browser tab but not appear visibly on the web page.

    I don’t see any blog title on your site; however, the header image has problems when viewing the site in Firefox.

    please post in your theme’s forum http://wordpress.org/support/theme/skirmish

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I stop my blog title from appearing above my header image?’ is closed to new replies.