It looks like this:
Code: Select all
<td>
<h1 style="font-family:Arial,Helvetica,sans-serif; font-size:18px;"><a href="<?php print $site_url; ?>" title="<?php print $site_title; ?>"><?php print $logo; ?> <?php print $site_name; ?></a></h1>
</td>Lets call the image: small-logo.png
and it resides in my http://www.mysite.com/image directory
I tried to replace the
Code: Select all
<?php print $logo; ?>Code: Select all
<?php $small_logo="www.mysite.com/image/small-logo.png" print $small_logo; ?>It is probably very obvious that I am new at this, but I'd appreciate any help you can give.