• Resolved concerns1234

    (@concerns1234)


    Hi,

    I recently made an image header for my blog. But the problem is that my blog’s title which can be set by going to Dashboard >> Settings appears above the header image.

    I’ve taken a screenshot of the header to show how awful it looks with the blog title appearing on the header image.

    http://tinypic.com/r/23k5a2s/4

    Can anybody show me how to remove the title from the header image without affecting the blog’s title that appears on the browser?

    By the way, the theme is Digg 3 column.

    Any help is greatly appreciated! Thanks in advance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • This would be occurring in your theme’s header.php file. You need to find the line of code that displays the title and remove it. The exact code to look for varies by theme. It will look something like
    <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>

    If removing that causes the spacing in your header to go off, put this back where the full line was previously: <h1></h1>
    If the header line in your theme had been wrapped in <h2> instead of <h1> then the code to put back would be <h2></h2>

    Thread Starter concerns1234

    (@concerns1234)

    Thanks! It helped me a lot. I was searching for this and the problem is now solved.

    lurambler

    (@lurambler)

    Thank you StvWlf. That was what I needed as well.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove the title tag appearing on blog’s header image’ is closed to new replies.