Hi,
I cannot seem to delete/replace the avatar that is installed in my header. I can certainly delete the code but I'd just like to replace the current image with one titled "angrychicken" from my library. Thanks for any help - please assume I have no understanding of php or css. Relevant header.php and CSS below:
PHP:
<div id="wrapper">
<div id="masthead" class="fix">
<h1>/"><?php bloginfo('name'); ?></h1>
<div id="blogLead">
<img src="<?php bloginfo('template_directory'); ?>/images/avatar.png" alt="Icon" />
<p id="authorIntro"><?php bloginfo('description'); ?></p>
</div>
</div>
CSS:
#masthead h1 {
float: center;
margin: 15px 0 0 7px;
}
#masthead h1 a {
text-transform: uppercase;
color: #fffacd;
width: 400px;
}
#blogLead img {
background: #fff;
border: 1px solid #bbb;
float: right;
height: 42px;
margin: 0 7px;
padding: 2px;
width: 42px;
}
#authorIntro {
float: right;
margin: 8px 0 0 0;
width: 340px;
}