Guest Posted December 19, 2009 Share Posted December 19, 2009 Hi Everyone, I created a new box for the right column to put advertising banners in. The box appears in the right column as it should but the images for the banners do not. Can you offer me some code suggestions ? Here is my advertising.php file: <?php /* $Id: advertising.php 1739 2007-12-20 00:52:16Z hpdl $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ ?> <!-- Useful Links //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_ADVERTISING); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('<a href="http://www.mydomain.ca/#"><img src="/images/ads/cedar.jpg" align="top"></a>'); new infoBox($info_box_contents); ?> </td> </tr> <!-- advertising_eof //--> Thank you Chris Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2009 Share Posted December 19, 2009 Nevermind, I figured it out. Minor changes but here they are in case anyone else wants to include an advertising box on one of the columns. <?php /* $Id: advertising.php 1739 2007-12-20 00:52:16Z hpdl $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ ?> <!-- Useful Links //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_ADVERTISING); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' =>'<a href="http://www.yourdomain.ca/#"><img src="/images/ads/cedar.jpg" align="top" border="0"></a><br>' . '<a href="http://www.yourdomain.ca/contact_us.php" target="_parent"><img src="/images/ads/adspace.jpg" border="0"></a>'); new infoBox($info_box_contents); ?> </td> </tr> <!-- advertising_eof //--> Chris Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.