I would like to add a logo on my site header. Currently, on Google Chrome, it is a blank white paper. How would I go about doing so? Here is the current HTML I am using for my site header. Any help would be much appreciated.

<title>
<?php if ( is_home() ) { ?> <?php } ?> 
<?php echo ucwords(wp_title('',true)); ?> <?php echo ucwords(get_bloginfo('name'));  ?>  
</title>
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

this will do, <link href = "images/icon.gif" rel="icon" type="image/gif">

link|improve this answer
feedback

I'm assuming you want to add a favicon. You can't put it in the <title>. This useful tool should help with generating an appropriate icon and give you the correct code to embed it in your site and instructions on where to add it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.