I am upgrading a Joomla 1.0.15 site to 1.5 and I had my logo split into two parts one appearing immediately below the top menu bar (logo3.png). I achieved this in the 1.0.x template using the following code on line 199 of the index.php file:
<div id="ja-subhead" style="background: url(<?php echo "$ja_template_path/images/headers/$ja_headerimg-bg1.jpg";?>) no-repeat bottom left;">
<img src="<?php echo $ja_template_path;?>/images/logo3.png"/>
<div class="innerpad">
<?php echo mosLoadModules ( 'top',-2 ); ?>
</div>
</div>
When I try to use this code in the Joomla 1.5 template it doesn’t work. Does anyone have any idea what changes I need to make to this code for it to work?
Thanks