On Sep 27, 2006, at 4:51 PM, Mike Payson wrote: > I'm having a bit of trouble figuring out a IE bug. The main content on > the page linked below is pushed down below the bottom of the left > column. It's almost as if there was a clear=both, but there isn't one. > There is a <br class="clearBoth">, but I don't have such a class > defined. This bug shows up on two types of pages, all of my category > pages, and on my shopping cart, which are the two pages reminaing that > contain tables. Any idea what's going on here? > > http://maximumrobotics.com/store/index.php?main_page=index&cPath=1_6
You already got an answer on that. I don't have IE win at hand to check my self exactly what it does. To add to Michael Geary's answer: 'position:relative' doesn't trigger the 'hasLayout' IE property by itself. Other triggers are needed. Whenever you use 'position:relative', it is a good idea to trigger 'hasLayout', before IE goes wrong. In your case, you need to establish a containing box, otherwise the wide tables cause the content to drop. That is what the 'hasLayout' property will do This article goes more in depth on all those IE problems <http://www.satzansatz.de/cssd/onhavinglayout.html> > > Also, can anyone tell me why the box surrounding the top new item on > my home page is showing up too big in Firefox? > > Sorry if these are dumb questions... We are launching on Friday, so my > debugging time is just about up & I've still got -plenty- to do. > Assuming you mean this page <http://maximumrobotics.com/store/> It does exactly what it should do (in Firefox and any other modern browser). .cbWhatsNewEven is set to 'clear:right', it clears the big image on the right. make your window smaller and you should see the box shrink. Philippe --- Philippe Wittenbergh <http://emps.l-c-n.com> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
