• I just switched to a new theme on my blog. I was able to change the blog header image to my own jpg image. I was also able to add sidebar widgets. However, the theme automatically adds the name of my blog to the header. It can be seen here:

    http://steelerstoday.com

    The part that is the problems is the header at the top right. As you can see, the letters overlap. The size is obviously wrong.

    I’d either like to make the font smaller so it shows properly, or even better yet, I’d like to make it not show at all. Can anyone tell me how to do either /both?

    I’d like to try both solutions to see which one works better.

Viewing 2 replies - 1 through 2 (of 2 total)
  • look in theme’s style.css for

    #headr h1 {
    	margin: 0;
    	padding: 20px 0 0 600px;
    	font-size: 3em;
    	font-family: Geneva, Arial, Helvetica, sans-serif;

    change this line to
    font-size: 2em;
    and you should like it

    to completely remove it, you will need to edit theme’s header.php to remove relevant code
    if not sure about code – post the file at pastebin.com and we can help further

    it is recommended not to change theme files, though, as mods are over-written on theme update
    instead simply create a child theme
    http://codex.wordpress.org/Child_Themes

    Thread Starter dstarver

    (@dstarver)

    That worked. Thank you so much!!!!! 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change blog title in header’ is closed to new replies.