View Single Post
  #2  
Old 02-17-2009, 02:52 PM
  gb2world's Avatar 
gb2world gb2world is offline
 

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

Default Re: H1 in IE7 doesn't follow CSS margin formatting?

It looks like your h1 tag is not inside a table cell, so IE may be having trouble interpreting the css margin correctly:

Your code:
Code:
<table width="100%"> <h1 class="product">36 x 20 Vanity Dressing Table Made For You</h1> <tr> <br /><br /> <td class="PImgBox" align="center" valign="top">


If you correct this does it make a difference:
Code:
<table width="100%"> <tr> <td class="PImgBox" align="center" valign="top"> <h1 class="product">36 x 20 Vanity Dressing Table Made For You</h1> <br /><br />
__________________
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