Hi there,

I believe there is a bug in IE 6.x or a bug in the code for Cross Sell or Tabbed Products Lite that makes the cross sell tab display strangely. It is possible it also the result of the sophy blue grey template I have installed.

Here is the link to the behavior: http://www.pccapital.ca/test-2/nuclear-peanut-5.html

In Firefox, the blue header "Buy Two or More Items and Get Free Shipping" displays just fine. There is also some text below the header that is shows up as normal in Firefox.

In IE 6.x, both of them are invisible, although they ARE there.... if you select the area with the mouse, you can select the header and the text below. Very strange! Note that this behaviour only shows up on the xsell tab... not on the other tabs. THe headers show up fine there.

I will attach the PHP from my TPL_Modules_xsell_products... perhaps you can see something wrong.

PHP Code:
<?php
/**
 * Cross Sell products
 *
 * Derived from:
 * Original Idea From Isaac Mualem [email protected] <mailto:[email protected]>
 * Portions Copyright (c) 2002 osCommerce
 * Complete Recoding From Stephen Walker [email protected]
 * Released under the GNU General Public License
 *
 * Adapted to Zen Cart by Merlin - Spring 2005
 * Reworked for Zen Cart v1.3.0  03-30-2006
 */


// calculate whether any cross-sell products are configured for the current product, and display if relevant
include(DIR_WS_MODULES zen_get_module_directory(FILENAME_XSELL_PRODUCTS));

if (
zen_not_null($xsell_data)) {
  
$info_box_contents = array();
  
$list_box_contents $xsell_data;
  
$title '';
?>
<!-- bof: tpl_modules_xsell_products -->
<div class="centerBoxWrapper" id="crossSell">
<h2 class="centerBoxHeading"><?php echo TEXT_XSELL_PRODUCTS?></h2>
Buy any two or more items and get Free Shipping on your order! Get a spare charger, maybe some premium Lithium AA's like the Energizer e2's.  Choose from the following, or add any other sku in our catalog to get Free Shipping!  <br><br>
<?php
/**
 * require the list_box_content template to display the cross-sell info. This info was prepared in modules/xsell_products.php
 */
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_columnar_display.php');
?>

<br><br>
</div>
<!-- eof: tpl_modules_xsell_products -->
<?php ?>
Thanks again for the help everyone!