FIMBLE, on 23 November 2009, 09:32, said:
The text is either hard coded or via a call and will be in your catalog / includes / boxes / link.php if that's the name of it.
If you want to post that file here we can take a look for you
Nic
Ok here's the code what Im trying to do is place all Links to other sites in this box and something is wrong with the code.
This is my site if you want to see the actuall problem Im having
View My Site
The actual code below from catalog/includes/boxes/links.php
<!-- links //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_LINK);
new infoBoxHeading($info_box_contents, false,false);
$info_box_contents[] = array('align' => 'center',
'text'=>'<a href="http://www.shopspot.us/" target="_blank"><img src="http://www.shopspot.us/img/logo.png" border="0" alt="Shopping spots directory, list your products for free"></a><br>');
new infoBox($info_box_contents) ;
?>
</td>
</tr>
</tr>
<!-- links_eof //-->