Just to be perfectly clear, this is the current code (that does show the alt text, but does not show the image):
(from header.php)
<div id=”header”>
<img src=”mybloglogo.gif” alt=”MyBlog Logo” title=”MyBlog Logo” width=”112px” height=”35px” />
<h1 id=”blog-title”>
<a>
title=”<?php bloginfo(‘name’) ?>”><?php bloginfo(‘name’) ?>
</a>
</h1>
<div id=”blog-description”><?php bloginfo(‘description’) ?>
</div>
</div>
I can see that my img tag is not enclosed in php. Is this necessary? If so, what would the php tag look like?
Thanks,
JAS