Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help Me Fix This Please!


graphicflasher

Recommended Posts

Posted

Wondering if anyone can help me...I added a contribution...that added an "About Us" page..it is there and working...but the color of the text..on the heading on the InfoBox...changed...exverything is still the same on my stylesheet...I am enclsoing..the php script..for the information page...if anyone can steer me in the right direction..I would appreciate it...

 

Thank you

PD

<?php
/*
 $Id: information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url]

 Copyright © 2003 osCommerce

 Released under the GNU General Public License
*/
?>
<!-- information //-->
         <tr>
           <td>
<?php
 $info_box_contents = array();
 $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);

 new infoBoxHeading($info_box_contents, false, false);

 $info_box_contents = array();
 $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' .
//*** 2004-09-02 <Add About Us Page>
                                        '<a href="' . tep_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a><br>' .
//*** 2004-09-02 </Add About Us Page>
                                        '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' .
                                        '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
                                        '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>');

 new infoBox($info_box_contents);
?>
           </td>
         </tr>
<!-- information_eof //-->

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...