Congrats on your 1 year! And I like what you did to the theme, your changes are great.
Okay, before I get into this I want to stress making backups in case something goes wrong or you change your mind...it's always better to be safe with these things. The only 2 files you'll be changing for this are header.php and style.css.
In header.php find this line:
- Code:
<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
and change it to:
- Code:
<h1><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
Then in style.css find this line:
- Code:
.header { background: #000 url(images/header.jpg) no-repeat; width: 750px; height: 200px; margin: 0 0 0 0; padding: 0; }
Remove this code:
- Code:
background: #000 url(images/header.jpg) no-repeat; width: 750px; height: 200px;
And add it to this line:
- Code:
.header h1 a { text-decoration: none; color: #EEEAE9; font-variant: small-caps; }
So it looks like this:
- Code:
.header h1 a { background: #000 url(images/header.jpg) no-repeat top left; width: 750px; height: 200px; text-decoration: none; color: #EEEAE9; font-variant: small-caps; display: block; }
There are a couple differences in this line that aren't in the original. The first is the addition of
top left to the
background: section, and the second is adding
display: block; to the line.
That should do it.
Oh and on a related note, I noticed that you still have the default blog title showing up kinda hidden with the font color. If you want to remove it go back into the line of code from header.php (at the top of this post) and remove this section of code:
- Code:
<?php bloginfo('name'); ?>
That will just take the text (which you're really not using) off the header.