Hi,
I've done some customizations to the look of my shopping cart table. It looks great in IE, but it's all messed up in Mozilla and Chrome. I could use some help. Here's the code for the table:
In Mozilla, the headers are just stacked up into one column on top of each other, rather than aligned vertically across the top of the table. In IE, they are aligned horizontaly as I would expect.PHP Code:<table border="0" width="100%" cellspacing="0" cellpadding="0" id="cartContentsDisplay">
<tr class="tableHeading">
<th scope="col" id="scQuantityHeading"><?php echo TABLE_HEADING_QUANTITY; ?></th>
<th scope="col" id="scUpdateQuantity"> </th>
<th scope="col" id="scProductsHeading"><?php echo TABLE_HEADING_PRODUCTS; ?></th>
<th scope="col" id="scUnitHeading"><?php echo TABLE_HEADING_PRICE; ?></th>
<th scope="col" id="scTotalHeading"><?php echo TABLE_HEADING_TOTAL; ?></th>
<th scope="col" id="scRemoveHeading"> </th>
</tr>
<!-- Loop through all products /-->
If you'd like to see it for yourself, my site is www.delightfuldaisy.com, just add a product to your cart and you'll quickly see.
Thanks in advance for any help.
TJ



