Thanks for replying, much appreciated. I can't see where to put this bit of code:
//Below the menu ads
if (function_exists("show_indexAds") && function_exists("show_towerleftAds") && function_exists("show_towerrightAds"))
{
$ads = show_indexAds();
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
//Tower left Ads
$ads = show_towerleftAds();
if(!empty($ads))
echo '<table><tr><td valign="top">', $ads['type']==0 ? $ads['content'] : eval($ads['content']) ,'</td><td width="100%" valign="top">';
unset($ads);
//Tower Right Ads
$ads = show_towerrightAds();
if(!empty($ads))
echo '<table><tr><td width="100%" valign="top">';
unset($ads);
}
When finding template_menu(); in my index.template.php file (which is attached to my first post) I can't insert the code after it without breaking it.
I'm also not sure if I got the bit of code after the </td> in the right place either so I've attached my file with the bits of code I've popped in already that haven't broken the code although I am ending up with a misplaced column advert at the bottom of the page that shouldn't be there.... they should be at the side.