Hello
This is the final thing I need to sort out so that I can launch my website.
In templates>base>scripts>BxBaseMenu.php I searched for the following
------------------------------------------------------------------
$this->sCode .= ($sSubItems=='') ? '<div class="subMenuContainerEmpty"></div>' : <<<EOF
<div class="subMenuContainer">
<table cellspacing="0" cellpadding="0"><tr>
{$sSubItems}
</tr></table>
</div>
EOF;
------------------------------------------------------------------
and edited it to this
------------------------------------------------------------------
$this->sCode .= ($sSubItems=='') ? '<div class="subMenuContainerEmpty"></div> <div id="leaderBoardnon"><img src="http://www.domainname.com/images/banner.jpg" width="728" height="90" /></div>' : <<<EOF
<div class="subMenuContainer">
<table cellspacing="0" cellpadding="0"><tr>
{$sSubItems}
</tr></table>
<div id="leaderBoard"><img src="http://www.domainname.com/images/banner.jpg" width="728" height="90" /></div>
</div>
EOF;
------------------------------------------------------------------
All I have done is added images (banners) and it works fine.
I then replaced the second image with a tag that calls a banner via googles DFP ad server, this worked fine. But when I replaced the first and second images with a tag Dolphin shows an error and does not work at all. The code is below.
------------------------------------------------------------------
$this->sCode .= ($sSubItems=='') ? '<div class="subMenuContainerEmpty"></div> <div id="leaderBoardnon"><!-- domainname.com_top_leaderboard_723x90 -->
<script type='text/javascript'>
GA_googleFillSlot("domainname.com_top_leaderboard_723x90");
</script></div></div>' : <<<EOF
<div class="subMenuContainer">
<table cellspacing="0" cellpadding="0"><tr>
{$sSubItems}
</tr></table>
<div id="leaderBoard"><!-- DomainName.com_top_leaderboard_723x90 -->
<script type='text/javascript'>
GA_googleFillSlot("domainname.com_top_leaderboard_723x90");
</script></div>
</div>
EOF;
------------------------------------------------------------------
Could someone please tell me how I can modify the above so that the tag will show a banner in both locations? It would be very much appreciated.
Regards
Stoosh

... You guys are great
, from the heart.