bossman Posted October 30, 2009 Share Posted October 30, 2009 Hi. We are working on this site... http://www.halcoholidays.com/staging/index.html The site looks great in Firefox, and Safari on the Mac, as well as Safari and Firefox on the PC. But, Internet Explorer is throwing a gap between my table rows in internet explorer.... Does anyone know how to fix this? it's driving me insane... Heres the table, it's pretty simple.. <body> <div id="wrapper"> <table width="1144" cellpadding="0" cellspacing="0" align="center"> <tr> <td colspan="4" class="top_section"> <img src="images/top_section.jpg" border="0" usemap="#Map2" /> </td> </tr> <tr class="middle_row"> <td class="middle_section_left" align="left"> <img src="images/middle_section_left.jpg" border="0" /> </td> <td class="middle_section_buttons" align="left" > <a href="#" onmouseover="image1.src='images/price_list_hover.jpg';" onmouseout="image1.src='images/price_list.jpg';"> <img name="image1" src="images/price_list.jpg" border="0" /></a><br/> <a href="#" onmouseover="image2.src='images/catalog_hover.jpg';" onmouseout="image2.src='images/catalog.jpg';"> <img name="image2" src="images/catalog.jpg" border="0" /></a> </td> <td class="middle_section_right" align="left"> <img src="images/middle_section_right.jpg" border="0" /> </td> <td class="middle_section_far_right" align="left"> <img src="images/middle_section_far_right.jpg" border="0" /> </td> </tr> <tr class="bottom_row"> <td class="bottom_section_left" align="left" colspan="3"> <img src="images/bottom_section_left.jpg" border="0" usemap="#Map" /> </td> <td class="bottom_section_right" align="left"> <img src="images/title.jpg" border="0" /> <p class="paragraph"> As the makers of the original Santa Suit, HALCO has been around for over 60 years. Since 1977, the present ownership has continued the same business philosophy established by their predecessors - namely to provide, quality workmanship, timely delivery and superior customer service.<br/><br/> HALCO Santa Suits have been featured in major motion pictures, television programs and commercials and can be found all over the world in places like Hong Kong, The Philippines, Guam, England, Africa, Australia and the United States. With such demand, it's clear that HALCO is the world leader when it comes to Santa Suits and other Christmas attire.<br/><br/> <em>We pride ourselves on Quality, Service and Fair Pricing.</em> </p> </td> </tr> <tr> <td class="footer" colspan="4"> <p class="footer_text"> Halco • 2037 Route 906 • P.O. Box 108 • Belle Vernon, Pennsylvania 15012<br/> Toll Free: 866.35.SANTA (72682) • Phone: 724.929.7300 • Fax: 724.929.7301 • Email: info@holcoholidays.com<br/><br/> © Copyright 2009 Halco. All Rights Reserved. </p> </td> </tr> </table> </div> <map name="Map" id="Map"> <area shape="rect" coords="155,4,305,196" href="#" target="_self" alt="Catalog" title="Catalog"/> </map> <map name="Map2" id="Map2"> <area shape="rect" coords="951,106,1025,120" href="#" target="_self" alt="Price List" title="Price List" /> <area shape="rect" coords="951,124,1018,138" href="#" target="_self" alt="Catalog" title="Catalog" /> </map> </body> and here's my css... @charset "UTF-8"; /* CSS Document */ body {background-color:#760000; text-align:center;} #wrapper {width:1145px; height:962px; margin-left:auto; margin-right:auto; } .top_section {width:1144px; height:408px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;} .middle_row {width:1144px; height:91px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; display:inline-block;} .middle_section_left {width:92px; height:91px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } .middle_section_buttons {width:157px; height:91px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; } .middle_section_right {width:130px; height:91px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;} .middle_section_far_right {width:765px; height:91px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;} .bottom_row {width:1144px; height:334px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; display:inline-block;} .bottom_section_left {width:379px; height:334px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;} .bottom_section_right { width:765px; height:334px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; background-image:url(images/bottom_section_right.jpg); background-repeat:no-repeat;} .paragraph {text-align:left; font-family:"Times New Roman", Times, serif; font-size:15px; padding-right:160px;} .footer {width:1144px; height:128px; padding:0px 0px 0px 0px; margin:0px 0px 0px 0px; background-image:url(images/footer.jpg); background-repeat:no-repeat;} .footer_text {font-family:"Times New Roman", Times, serif; color:#FC0; font-size:13px; text-align:center;} Anyone have any advice?? Randy Quote Link to comment Share on other sites More sharing options...
haku Posted October 31, 2009 Share Posted October 31, 2009 Set: border-collapse:collapse on your tables. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.