On this site http://dropandship.com/auction.html, I'm getting a gap b/w the tabs and the banner in IE6,7. But it's fine in Firefox. Does anyone know what the culprit behind this would be?
Hmmm, in the body tag in the css script, set the font size to 1px and see what happens. May fix your problem.
Well there is no body tag in my CSS but I added it anyway like so, but still didn't work; body { font-size: 1px; } Code (markup):
I suppose it could be with this line: <tr style="[COLOR="Red"]padding-bottom: 20px;[/COLOR]" align="center"> <td><table width="80%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><a href="#1"><img src="images/auction/images/auction-navtabs_03.jpg" /></a></td> <td><a href="#2"><img src="images/auction/images/auction-navtabs_07.jpg" /></a></td> <td><a href="#3"><img src="images/auction/images/auction-navtabs_11.jpg" /></a></td> <td><a href="#4"><img src="images/auction/images/auction-navtabs_14.jpg" /></a></td> <td><a href="http://stores.ebay.com/Capital-auction-experts"><img src="images/auction/images/auction-navtabs_17.jpg" /></a></td> <td><a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&linkname=includefavoritestore&sellerid=capitalauctionexperts"><img src="/images/auction/images/auction-navtabs_20.jpg" /></a></td> </tr> </table></td> </tr> Code (markup): I know how to fix it if it was a class or an id, but I don't if it's just style. You can use an ie 6 hack, and it should work: /* IE 6 Hack */ * html #idhere { padding-bottom:0px; } Code (markup):
better yet, i just removed that padding all together. I'm not even sure why that was there to begin with. Sorry about that...should've been more careful before asking, but thank you!