View Single Post
  #2  
Old 12-01-2009, 02:31 PM
  gb2world's Avatar 
gb2world gb2world is offline
 

X-Wizard
  
Join Date: May 2006
Location: Austin, TX
Posts: 1,970
 

Default Re: Product dialog box not filling up entire space in IE

If you use the IE developer toolbar - it shows that the table cell that contains the central space has a property: vertical-align:baseline. IE may be inheriting it from one of the containing classes.

One possible way to fix it is to modify that td from:
<td valign="top" width="100%">

change to:
<td width="100%" style="vertical-align:top;">

Or, if you don't like inline css, you can make a class for that table or td and align to the top instead of the baseline
__________________
X-CART (4.1.9,12/4.2.2-3/4.3.1-2/4.4.1-5)-Gold
(CDSEO, Altered-Cart On Sale, BCSE Preorder Backorder, QuickOrder, X-Payments, BCSE DPM Module)
Reply With Quote